1
0
mirror of https://github.com/bol-van/zapret.git synced 2025-05-01 19:32:59 +03:00

tpws : gzip.c bad if

This commit is contained in:
bolvan 2019-05-10 16:54:54 +03:00
parent be487f7475
commit be5b248cdd
9 changed files with 0 additions and 1 deletions
binaries
aarch64
armhf
mips32r1-lsb
mips32r1-msb
mips64r2-msb
ppc
x86
x86_64
tpws

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -39,7 +39,6 @@ int z_readfile(FILE *F,char **buf,size_t *size)
{
bufsize += BUFCHUNK;
newbuf = *buf ? realloc(*buf,bufsize) : malloc(bufsize);
if (newbuf==*buf)
if (!newbuf)
{
r = Z_MEM_ERROR;