mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
Anand Avati hit an integer overflow problem in our unzip code.
This commit is contained in:
parent
c8b8a2d0cf
commit
29ee76cb2b
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue