summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib/src/inflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/zlib/src/inflate.c')
-rw-r--r--src/3rdparty/zlib/src/inflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/zlib/src/inflate.c b/src/3rdparty/zlib/src/inflate.c
index 7a72897492..2a3c4fe984 100644
--- a/src/3rdparty/zlib/src/inflate.c
+++ b/src/3rdparty/zlib/src/inflate.c
@@ -763,10 +763,10 @@ int flush;
copy = state->length;
if (copy > have) copy = have;
if (copy) {
- len = state->head->extra_len - state->length;
if (state->head != Z_NULL &&
state->head->extra != Z_NULL &&
- len < state->head->extra_max) {
+ (len = state->head->extra_len - state->length) <
+ state->head->extra_max) {
zmemcpy(state->head->extra + len, next,
len + copy > state->head->extra_max ?
state->head->extra_max - len : copy);