From e50dc16b2188e2c4a0052f670273b7b21cce08a3 Mon Sep 17 00:00:00 2001 From: Stefan Roehrich Date: Sun, 1 Dec 2002 18:48:51 +0000 Subject: [PATCH] Comment about maximal length now matches code. --- ext/zlib/zlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.50.1