mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
CXX_BUILD fix
This commit is contained in:
parent
3ffc4fe687
commit
7a0338f5cc
4
deps/libz/inflate.c
vendored
4
deps/libz/inflate.c
vendored
@ -206,7 +206,7 @@ int inflateInit2_(z_streamp strm, int windowBits,
|
||||
malloc(sizeof(*state));
|
||||
if (state == Z_NULL)
|
||||
return Z_MEM_ERROR;
|
||||
state->mode = 0;
|
||||
state->mode = HEAD;
|
||||
state->last = 0;
|
||||
state->wrap = 0;
|
||||
state->havedict = 0;
|
||||
@ -1404,7 +1404,7 @@ int inflateCopy(z_streamp dest, z_streamp source)
|
||||
if (copy == Z_NULL)
|
||||
return Z_MEM_ERROR;
|
||||
window = Z_NULL;
|
||||
copy->mode = 0;
|
||||
copy->mode = HEAD;
|
||||
copy->last = 0;
|
||||
copy->wrap = 0;
|
||||
copy->havedict = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user