mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
(deps/zlib) Rollback changes
This commit is contained in:
parent
3c2f7fadcc
commit
ac09b7eb29
2
deps/zlib/gzread.c
vendored
2
deps/zlib/gzread.c
vendored
@ -249,7 +249,7 @@ local int gz_fetch(gz_statep state)
|
|||||||
/* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */
|
/* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */
|
||||||
local int gz_skip(gz_statep state, z_off64_t len)
|
local int gz_skip(gz_statep state, z_off64_t len)
|
||||||
{
|
{
|
||||||
unsigned n = 0;
|
unsigned n;
|
||||||
|
|
||||||
/* skip over len bytes or reach end-of-file, whichever comes first */
|
/* skip over len bytes or reach end-of-file, whichever comes first */
|
||||||
while (len)
|
while (len)
|
||||||
|
2
deps/zlib/gzwrite.c
vendored
2
deps/zlib/gzwrite.c
vendored
@ -132,7 +132,7 @@ local int gz_comp(gz_statep state, int flush)
|
|||||||
local int gz_zero(gz_statep state, z_off64_t len)
|
local int gz_zero(gz_statep state, z_off64_t len)
|
||||||
{
|
{
|
||||||
int first;
|
int first;
|
||||||
unsigned n = 0;
|
unsigned n;
|
||||||
z_streamp strm = &(state->strm);
|
z_streamp strm = &(state->strm);
|
||||||
|
|
||||||
/* consume whatever's left in the input buffer */
|
/* consume whatever's left in the input buffer */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user