From: Stefan Roehrich Date: Sun, 1 Dec 2002 18:48:51 +0000 (+0000) Subject: Comment about maximal length now matches code. X-Git-Tag: RELEASE_1_0b3~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e50dc16b2188e2c4a0052f670273b7b21cce08a3;p=php Comment about maximal length now matches code. --- diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 54fb078691..136bd5a268 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -488,7 +488,7 @@ PHP_FUNCTION(gzuncompress) /* zlib::uncompress() wants to know the output data length if none was given as a parameter - we try from input length * 2 up to input length * 2^8 + we try from input length * 2 up to input length * 2^15 doubling it whenever it wasn't big enough that should be eneugh for all real life cases */ @@ -616,7 +616,7 @@ PHP_FUNCTION(gzinflate) /* stream.avail_out wants to know the output data length if none was given as a parameter - we try from input length * 2 up to input length * 2^16 + we try from input length * 2 up to input length * 2^15 doubling it whenever it wasn't big enough that should be enaugh for all real life cases */