diff options
author | andreas_kupries <akupries@shaw.ca> | 2010-02-22 23:54:24 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2010-02-22 23:54:24 (GMT) |
commit | 63555d4e8d83f33df7c4cbc266b7f426eb3f9b84 (patch) | |
tree | 2a6e12030b4972c4a05f5d296d14b191b5ebe7e0 /generic/tclZlib.c | |
parent | 718a26fe2a6c218477b2486bcc3d014df7b559fa (diff) | |
download | tcl-63555d4e8d83f33df7c4cbc266b7f426eb3f9b84.zip tcl-63555d4e8d83f33df7c4cbc266b7f426eb3f9b84.tar.gz tcl-63555d4e8d83f33df7c4cbc266b7f426eb3f9b84.tar.bz2 |
* generic/tclZlib.c (ZlibTransformInput): [Bug 2742041]: Added a
hack to work around the general problem, early EOF recoginition
based on the base-chgannel, instead of the data we have ready for
reading in the transform. Long-term we need a proper general fix
(likely tracking EOF on each level of the channel stack), with
attendant complexity. Further: Z_BUF_ERROR can be ignored, and
must be when feeding the zlib code with single characters.
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r-- | generic/tclZlib.c | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c index f43f704..14212ef 100644 --- a/generic/tclZlib.c +++ b/generic/tclZlib.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclZlib.c,v 1.33 2010/02/08 13:21:42 dkf Exp $ + * RCS: @(#) $Id: tclZlib.c,v 1.34 2010/02/22 23:54:24 andreas_kupries Exp $ */ #include "tclInt.h" @@ -2412,7 +2412,15 @@ ZlibTransformInput( if ((e == Z_STREAM_END) || (e==Z_OK && cd->inStream.avail_out==0)) { return toRead - cd->inStream.avail_out; } - if (e != Z_OK) { + + /* + * Z_BUF_ERROR can be ignored as per http://www.zlib.net/zlib_how.html + * + * Just indicates that the zlib couldn't consume input/produce output, + * and is fixed by supplying more input. + */ + + if ((e != Z_OK) && (e != Z_BUF_ERROR)) { Tcl_Obj *errObj = Tcl_NewListObj(0, NULL); Tcl_ListObjAppendElement(NULL, errObj, @@ -2436,7 +2444,18 @@ ZlibTransformInput( */ doReadFirst: - read = Tcl_ReadRaw(cd->parent, cd->inBuffer, cd->inAllocated); + /* + * Hack for Bug 2762041. Disable pre-reading of lots of input, read + * only one character. This way the Z_END_OF_STREAM can be read + * without triggering an EOF in the base channel. The higher input + * loops in DoReadChars() would react to that by stopping, despite the + * transform still having data which could be read. + * + * This is only a hack because other transforms may not be able to + * work around the general problem in this way. + */ + + read = Tcl_ReadRaw(cd->parent, cd->inBuffer, 1); if (read < 0) { *errorCodePtr = Tcl_GetErrno(); return -1; |