aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-01-10 06:19:56 +0000
committerRob Landley <rob@landley.net>2006-01-10 06:19:56 +0000
commit9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1 (patch)
treeec6fc0b6a656c3b98bea253f420bdf87db11f651
parent71d6ccd801446c3551192e1080232c19c62cad44 (diff)
downloadbusybox-w32-9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1.tar.gz
busybox-w32-9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1.tar.bz2
busybox-w32-9e4100bf95ab2f1b9a2fe76a8ac0e7a3666cd8b1.zip
Don't return 0 when there's an error.
-rw-r--r--archival/libunarchive/decompress_unzip.c2
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)
973 /* Validate decompression - crc */ 973 /* Validate decompression - crc */
974 if (stored_crc != (gunzip_crc ^ 0xffffffffL)) { 974 if (stored_crc != (gunzip_crc ^ 0xffffffffL)) {
975 bb_error_msg("crc error"); 975 bb_error_msg("crc error");
976 return -1;
976 } 977 }
977 978
978 /* Validate decompression - size */ 979 /* Validate decompression - size */
@@ -980,6 +981,7 @@ extern int inflate_gunzip(int in, int out)
980 (bytebuffer[bytebuffer_offset] | (bytebuffer[bytebuffer_offset+1] << 8) | 981 (bytebuffer[bytebuffer_offset] | (bytebuffer[bytebuffer_offset+1] << 8) |
981 (bytebuffer[bytebuffer_offset+2] << 16) | (bytebuffer[bytebuffer_offset+3] << 24))) { 982 (bytebuffer[bytebuffer_offset+2] << 16) | (bytebuffer[bytebuffer_offset+3] << 24))) {
982 bb_error_msg("Incorrect length"); 983 bb_error_msg("Incorrect length");
984 return -1;
983 } 985 }
984 986
985 return 0; 987 return 0;