mirror of https://github.com/mirror/busybox.git
Anand Avati hit an integer overflow problem in our unzip code.
parent
c8b8a2d0cf
commit
29ee76cb2b
|
@ -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 New Issue