mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-06 20:00:56 +01:00
parent
91a1be15c2
commit
25a8b18c5d
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue