diff options
author | Pixel <Pixel> | 2002-08-15 22:15:20 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-08-15 22:15:20 +0000 |
commit | 020a28c534544c0f1710f8af1e4b295fddcad66a (patch) | |
tree | 9f9d25920c9ad6e023f5cb6d87f00cd78db86d60 /generic/Handle.cpp | |
parent | d962e8d2d650c7b297dcd041b55060bc29996a93 (diff) |
Working...
Diffstat (limited to 'generic/Handle.cpp')
-rw-r--r-- | generic/Handle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/Handle.cpp b/generic/Handle.cpp index 29b4816..6d02381 100644 --- a/generic/Handle.cpp +++ b/generic/Handle.cpp @@ -10,7 +10,7 @@ #define _(x) x #endif -Handle::Handle(const Handle & nh) : h(nh.h >= 0 ? dup(nh.h) : nh.h), closed(nh.closed), nonblock(nh.closed), zfile(0), z(0), itell(0) { +Handle::Handle(const Handle & nh) : itell(0), h(nh.h >= 0 ? dup(nh.h) : nh.h), closed(nh.closed), nonblock(nh.closed), zfile(0), z(0) { // cerr << "Duplication of handle " << nh.h << " to " << h << endl; if ((h >= 0) && (nh.z)) { SetZ(nh.z); |