tree 8a25999cb4b8c33841bd1969e3054c13bda3b394
parent 7974b1cc7879141962999e78a6fc9a136dc4479e
author Linus Torvalds <[EMAIL PROTECTED]> Thu, 18 Aug 2005 03:07:28 -0700
committer Linus Torvalds <[EMAIL PROTECTED]> Thu, 18 Aug 2005 03:07:28 -0700

Revert unnecessary zlib_inflate/inftrees.c fix

It turns out that empty distance code tables are not an error, and that
a compressed block with only literals can validly have an empty table
and should not be flagged as a data error.

Some old versions of gzip had problems with this case, but it does not
affect the zlib code in the kernel.

Analysis and explanations thanks to Sergey Vlasov <[EMAIL PROTECTED]>

Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>

 lib/zlib_inflate/inftrees.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/zlib_inflate/inftrees.c b/lib/zlib_inflate/inftrees.c
--- a/lib/zlib_inflate/inftrees.c
+++ b/lib/zlib_inflate/inftrees.c
@@ -141,7 +141,7 @@ static int huft_build(
   {
     *t = NULL;
     *m = 0;
-    return Z_DATA_ERROR;
+    return Z_OK;
   }
 
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to