diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-17 16:07:28 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-17 16:07:28 -0400 |
commit | c231c7db30faf93419fc22d680f74d816bea70e2 (patch) | |
tree | 8a25999cb4b8c33841bd1969e3054c13bda3b394 /lib/zlib_inflate | |
parent | 7974b1cc7879141962999e78a6fc9a136dc4479e (diff) |
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 <vsu@altlinux.ru>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib/zlib_inflate')
-rw-r--r-- | lib/zlib_inflate/inftrees.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zlib_inflate/inftrees.c b/lib/zlib_inflate/inftrees.c index c5f66fbb0dd0..874950ec4858 100644 --- a/lib/zlib_inflate/inftrees.c +++ b/lib/zlib_inflate/inftrees.c | |||
@@ -141,7 +141,7 @@ static int huft_build( | |||
141 | { | 141 | { |
142 | *t = NULL; | 142 | *t = NULL; |
143 | *m = 0; | 143 | *m = 0; |
144 | return Z_DATA_ERROR; | 144 | return Z_OK; |
145 | } | 145 | } |
146 | 146 | ||
147 | 147 | ||