From 020a28c534544c0f1710f8af1e4b295fddcad66a Mon Sep 17 00:00:00 2001 From: Pixel Date: Thu, 15 Aug 2002 22:15:20 +0000 Subject: Working... --- generic/Handle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'generic/Handle.cpp') 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); -- cgit v1.2.3