From 4dd6658edc2dac1d8c87439f7d9632be4bc241c1 Mon Sep 17 00:00:00 2001 From: Alex Kocharin Date: Fri, 10 Jun 2022 17:02:33 +0300 Subject: [PATCH] Fix bug when window full in deflate_stored(). https://github.com/madler/zlib/commit/8ba393e70d984d902b15b9e6876f4d0d38ae4be8 --- lib/zlib/deflate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/zlib/deflate.js b/lib/zlib/deflate.js index 59e8578..b932d31 100644 --- a/lib/zlib/deflate.js +++ b/lib/zlib/deflate.js @@ -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;