1
0
Fork 0
mirror of https://github.com/0x5eal/rbxts-pako.git synced 2025-04-05 19:31:01 +01:00

Update high water mark in deflate_stored.

7d9c9d410a
This commit is contained in:
Alex Kocharin 2022-06-10 16:55:08 +03:00
parent 91a1be15c2
commit 25a8b18c5d

View file

@ -609,6 +609,9 @@ const deflate_stored = (s, flush) => {
s.block_start = s.strstart;
s.insert += used > s.w_size - s.insert ? s.w_size - s.insert : used;
}
if (s.high_water < s.strstart) {
s.high_water = s.strstart;
}
/* If the last block was written to next_out, then done. */
if (last) {
@ -641,6 +644,9 @@ const deflate_stored = (s, flush) => {
read_buf(s.strm, s.window, s.strstart, have);
s.strstart += have;
}
if (s.high_water < s.strstart) {
s.high_water = s.strstart;
}
/* There was not enough avail_out to write a complete worthy or flushed
* stored block to next_out. Write a stored block to pending instead, if we