unzip: add a comment explaining why we don't die

This commit is contained in:
Denis Vlasenko 2007-10-19 21:03:09 +00:00
parent bc7c5d082e
commit fcc569637b

View File

@ -107,6 +107,8 @@ static void unzip_extract(zip_header_t *zip_header, int src_fd, int dst_fd)
}
/* Validate decompression - size */
if (zip_header->formatted.ucmpsize != res.bytes_out) {
/* Don't die. Who knows, maybe len calculation
* was botched somewhere. After all, crc matched! */
bb_error_msg("bad length");
}
}