diff options
author | Rob Landley | 2005-08-31 22:03:15 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-31 22:03:15 +0000 |
commit | 29ee76cb2bf3a58eadad402a60354ddb28102d7f (patch) | |
tree | da9a8507e27e4a9bbde96b3ab6f7d6d244cb4997 | |
parent | c8b8a2d0cf1e38fc0c8b11b724bbdfcdf62fe65b (diff) | |
download | busybox-29ee76cb2bf3a58eadad402a60354ddb28102d7f.zip busybox-29ee76cb2bf3a58eadad402a60354ddb28102d7f.tar.gz |
Anand Avati hit an integer overflow problem in our unzip code.
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index 3d03643..0a199dd 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c @@ -956,7 +956,7 @@ extern int inflate_unzip(int in, int out) extern int inflate_gunzip(int in, int out) { unsigned int stored_crc = 0; - unsigned char count; + unsigned int count; inflate_unzip(in, out); |