Fix deflateEnd() to not report an error at start of raw deflate.

c376a417a7
This commit is contained in:
Alex Kocharin 2022-06-10 17:12:14 +03:00
parent 4dd6658edc
commit 8a1cdad62b

View file

@ -1589,6 +1589,9 @@ const deflate = (strm, flush) => {
}
/* Write the header */
if (s.status === INIT_STATE && s.wrap === 0) {
s.status = BUSY_STATE;
}
if (s.status === INIT_STATE) {
/* zlib header */
let header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;