aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;