aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/unzip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/archival/unzip.c b/archival/unzip.c
index 37781e44e..56a5eb625 100644
--- a/archival/unzip.c
+++ b/archival/unzip.c
@@ -107,6 +107,8 @@ static void unzip_extract(zip_header_t *zip_header, int src_fd, int dst_fd)
107 } 107 }
108 /* Validate decompression - size */ 108 /* Validate decompression - size */
109 if (zip_header->formatted.ucmpsize != res.bytes_out) { 109 if (zip_header->formatted.ucmpsize != res.bytes_out) {
110 /* Don't die. Who knows, maybe len calculation
111 * was botched somewhere. After all, crc matched! */
110 bb_error_msg("bad length"); 112 bb_error_msg("bad length");
111 } 113 }
112 } 114 }