diff options
author | Alain Knaff <alain@knaff.lu> | 2009-01-08 18:10:19 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-01-08 18:10:19 -0500 |
commit | 6c11b12ac6f101732d43b5682f5b3ae4dda4205f (patch) | |
tree | 8408be1569ac76d1ab6b9b92a96e359efd3759d4 /lib | |
parent | 5619448fc55650cb76cbb825e16e4bb5d1390399 (diff) |
bzip2/lzma: fix decompress_inflate.c vs multi-block-with-embedded-filename
Impact: Bug fix
Fix gunzip uncompression, so that it also works with files with
embedded filenames that are larger than one block.
Signed-off-by: Alain Knaff <alain@knaff.lu>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/decompress_inflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/decompress_inflate.c b/lib/decompress_inflate.c index d2e7c758d1ca..839a329b4fc4 100644 --- a/lib/decompress_inflate.c +++ b/lib/decompress_inflate.c | |||
@@ -97,7 +97,7 @@ STATIC int INIT gunzip(unsigned char *buf, int len, | |||
97 | strm->next_in++; | 97 | strm->next_in++; |
98 | strm->next_in++; | 98 | strm->next_in++; |
99 | } | 99 | } |
100 | strm->avail_in = len - 10; | 100 | strm->avail_in = len - (strm->next_in - zbuf); |
101 | 101 | ||
102 | strm->next_out = out_buf; | 102 | strm->next_out = out_buf; |
103 | strm->avail_out = out_len; | 103 | strm->avail_out = out_len; |