mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Add check to see that bytes were written.
This commit is contained in:
parent
e849627093
commit
ad82950a53
@ -184,7 +184,7 @@ int32_t mz_stream_bzip_read(void *stream, void *buf, int32_t size)
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (bzip->bzstream.avail_out > 0);
|
||||
while (bzip->bzstream.avail_out > 0 && out_bytes > 0);
|
||||
|
||||
if (bzip->error != 0)
|
||||
return MZ_DATA_ERROR;
|
||||
|
@ -177,7 +177,7 @@ int32_t mz_stream_libcomp_read(void *stream, void *buf, int32_t size)
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (libcomp->cstream.dst_size > 0);
|
||||
while (libcomp->cstream.dst_size > 0 && out_bytes > 0);
|
||||
|
||||
if (libcomp->error != 0)
|
||||
return MZ_DATA_ERROR;
|
||||
|
@ -207,7 +207,7 @@ int32_t mz_stream_lzma_read(void *stream, void *buf, int32_t size)
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (lzma->lstream.avail_out > 0);
|
||||
while (lzma->lstream.avail_out > 0 && out_bytes > 0);
|
||||
|
||||
if (lzma->error != 0)
|
||||
return MZ_DATA_ERROR;
|
||||
|
@ -189,7 +189,7 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
|
||||
break;
|
||||
}
|
||||
}
|
||||
while (zlib->zstream.avail_out > 0);
|
||||
while (zlib->zstream.avail_out > 0 && out_bytes > 0);
|
||||
|
||||
if (zlib->error != 0)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user