Fix bug that accepted invalid zlib header when windowBits is zero.

6cef1de740
This commit is contained in:
Alex Kocharin 2022-06-08 18:36:51 +03:00
parent a98f90806e
commit 8f630ba374

View file

@ -469,7 +469,7 @@ const inflate = (strm, flush) => {
if (state.wbits === 0) {
state.wbits = len;
}
else if (len > state.wbits) {
if (len > 15 || len > state.wbits) {
strm.msg = 'invalid window size';
state.mode = BAD;
break;