Fix bug when window full in deflate_stored().

8ba393e70d
This commit is contained in:
Alex Kocharin 2022-06-10 17:02:33 +03:00
parent b579434679
commit 4dd6658edc

View file

@ -632,7 +632,7 @@ const deflate_stored = (s, flush) => {
}
/* Fill the window with any remaining input. */
have = s.window_size - s.strstart - 1;
have = s.window_size - s.strstart;
if (s.strm.avail_in > have && s.block_start >= s.w_size) {
/* Slide the window down. */
s.block_start -= s.w_size;