diff options
author | Eric Andersen | 2001-06-27 06:15:50 +0000 |
---|---|---|
committer | Eric Andersen | 2001-06-27 06:15:50 +0000 |
commit | 0d8cc1670cdb6c4acdad1e2fcd92cb378873355b (patch) | |
tree | dbbf9f3fc4c9c3641ed07a33edee33bf7226e27e /archival/libunarchive/unzip.c | |
parent | 4b6b5e4314e6b760bdc0cf51dfb1f01896f3b6d0 (diff) | |
download | busybox-0d8cc1670cdb6c4acdad1e2fcd92cb378873355b.zip busybox-0d8cc1670cdb6c4acdad1e2fcd92cb378873355b.tar.gz |
Fix a type promotion bug discivered and analyzed by Alan Modra
<amodra@bigpond.net.au>, which caused false checksum errors
Diffstat (limited to 'archival/libunarchive/unzip.c')
-rw-r--r-- | archival/libunarchive/unzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/unzip.c b/archival/libunarchive/unzip.c index 7de2893..40b8af4 100644 --- a/archival/libunarchive/unzip.c +++ b/archival/libunarchive/unzip.c @@ -997,7 +997,7 @@ extern int unzip(FILE *l_in_file, FILE *l_out_file) fread(buf, 1, 8, in_file); /* Validate decompression - crc */ - if (((buf[0] | (buf[1] << 8)) |((buf[2] | (buf[3] << 8)) << 16)) != (crc ^ 0xffffffffL)) { + if ((unsigned int)((buf[0] | (buf[1] << 8)) |((buf[2] | (buf[3] << 8)) << 16)) != (crc ^ 0xffffffffL)) { error_msg("invalid compressed data--crc error"); } /* Validate decompression - size */ |