@@ -243,7 +243,7 @@ int value;
}
if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
value &= (1L << bits) - 1;
state->hold += value << state->bits;
state->hold += (unsigned)value << state->bits;
state->bits += bits;
return Z_OK;
The note is not visible to the blocked user.