From ecf1047019190d07468489d2dfd2fdc56c092e26 Mon Sep 17 00:00:00 2001 From: DLL125 <134442578+DLL125@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:47:29 +0200 Subject: update zlib + copyright (#1302) --- src/Common/zlib/inflate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Common/zlib/inflate.c') diff --git a/src/Common/zlib/inflate.c b/src/Common/zlib/inflate.c index b0757a9b..94ecff01 100644 --- a/src/Common/zlib/inflate.c +++ b/src/Common/zlib/inflate.c @@ -1387,7 +1387,7 @@ int ZEXPORT inflateSync(z_streamp strm) { /* if first time, start search in bit buffer */ if (state->mode != SYNC) { state->mode = SYNC; - state->hold <<= state->bits & 7; + state->hold >>= state->bits & 7; state->bits -= state->bits & 7; len = 0; while (state->bits >= 8) { -- cgit v1.2.3