diff options
author | Rob Landley <rob@landley.net> | 2006-01-10 06:19:56 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-01-10 06:19:56 +0000 |
commit | 9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1 (patch) | |
tree | ec6fc0b6a656c3b98bea253f420bdf87db11f651 /archival/libunarchive | |
parent | 71d6ccd801446c3551192e1080232c19c62cad44 (diff) | |
download | busybox-9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1.tar.gz |
Don't return 0 when there's an error.
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index e8767cef5..4c1d1780e 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c @@ -973,6 +973,7 @@ extern int inflate_gunzip(int in, int out) /* Validate decompression - crc */ if (stored_crc != (gunzip_crc ^ 0xffffffffL)) { bb_error_msg("crc error"); + return -1; } /* Validate decompression - size */ @@ -980,6 +981,7 @@ extern int inflate_gunzip(int in, int out) (bytebuffer[bytebuffer_offset] | (bytebuffer[bytebuffer_offset+1] << 8) | (bytebuffer[bytebuffer_offset+2] << 16) | (bytebuffer[bytebuffer_offset+3] << 24))) { bb_error_msg("Incorrect length"); + return -1; } return 0; |