diff options
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1387,7 +1387,7 @@ int ZEXPORT inflateSync(z_streamp strm) { | |||
1387 | /* if first time, start search in bit buffer */ | 1387 | /* if first time, start search in bit buffer */ |
1388 | if (state->mode != SYNC) { | 1388 | if (state->mode != SYNC) { |
1389 | state->mode = SYNC; | 1389 | state->mode = SYNC; |
1390 | state->hold <<= state->bits & 7; | 1390 | state->hold >>= state->bits & 7; |
1391 | state->bits -= state->bits & 7; | 1391 | state->bits -= state->bits & 7; |
1392 | len = 0; | 1392 | len = 0; |
1393 | while (state->bits >= 8) { | 1393 | while (state->bits >= 8) { |