summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2004-05-19 19:23:57 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2004-05-19 19:23:57 (GMT)
commitba0297b9f7d0811970f9559e9f2c6e2024cf2b70 (patch)
tree35d50bd6f9cb7d77f165ca0990e3947f05e29314 /generic/tclIO.c
parent49f0c63a076bb4db71d4588715124f160781733c (diff)
downloadtcl-ba0297b9f7d0811970f9559e9f2c6e2024cf2b70.zip
tcl-ba0297b9f7d0811970f9559e9f2c6e2024cf2b70.tar.gz
tcl-ba0297b9f7d0811970f9559e9f2c6e2024cf2b70.tar.bz2
Removed one bogus clearance of the has-more flag. Erroneously kept
after shifting the code. FossilOrigin-Name: 36ef9ecd35ac8b08841a7a4d30c53b1d699cc7e1
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index a689ca9..f1a3266 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIO.c,v 1.61.2.5 2004/05/19 19:16:21 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclIO.c,v 1.61.2.6 2004/05/19 19:23:58 andreas_kupries Exp $
*/
#include "tclInt.h"
@@ -5324,8 +5324,6 @@ GetInput(chanPtr)
nread = -1;
result = EWOULDBLOCK;
} else {
- statePtr->flags &= ~CHANNEL_HAS_MORE_DATA;
-
nread = (chanPtr->typePtr->inputProc)(chanPtr->instanceData,
bufPtr->buf + bufPtr->nextAdded, toRead, &result);
}