diff options
Diffstat (limited to 'sys/lib/libz/inflate.c')
-rw-r--r-- | sys/lib/libz/inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libz/inflate.c b/sys/lib/libz/inflate.c index 529670d268a..f35a99c4185 100644 --- a/sys/lib/libz/inflate.c +++ b/sys/lib/libz/inflate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inflate.c,v 1.19 2022/08/09 07:39:00 tb Exp $ */ +/* $OpenBSD: inflate.c,v 1.20 2022/08/15 12:29:19 tb Exp $ */ /* inflate.c -- zlib decompression * Copyright (C) 1995-2022 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h @@ -787,7 +787,7 @@ int flush; if (state->head != Z_NULL && state->head->extra != Z_NULL && (len = state->head->extra_len - state->length) < - state->head->extra_max) { + state->head->extra_max) { zmemcpy(state->head->extra + len, next, len + copy > state->head->extra_max ? state->head->extra_max - len : copy); |