diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/unzip.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libbb/unzip.c b/libbb/unzip.c index 88d2a0a..058aa07 100644 --- a/libbb/unzip.c +++ b/libbb/unzip.c @@ -639,8 +639,11 @@ static int inflate_block(int *e) } /* decompress until an end-of-block code */ - if (inflate_codes(tl, td, bl, bd)) + if (inflate_codes(tl, td, bl, bd)) { + huft_free(tl); + huft_free(td); return 1; + } /* free the decoding tables, return */ huft_free(tl); @@ -816,8 +819,11 @@ static int inflate_block(int *e) } /* decompress until an end-of-block code */ - if (inflate_codes(tl, td, bl, bd)) + if (inflate_codes(tl, td, bl, bd)) { + huft_free(tl); + huft_free(td); return 1; + } /* free the decoding tables, return */ huft_free(tl); |