mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-05 11:20:58 +01:00
fix inflate wrapper cycle condition issue #29
This commit is contained in:
parent
87a6a88255
commit
c449f4ff69
2 changed files with 2 additions and 2 deletions
|
@ -225,7 +225,7 @@ Inflate.prototype.push = function(data, mode) {
|
|||
}
|
||||
}
|
||||
}
|
||||
} while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
|
||||
} while ((strm.avail_in > 0) && status !== c.Z_STREAM_END);
|
||||
|
||||
if (status === c.Z_STREAM_END) {
|
||||
_mode = c.Z_FINISH;
|
||||
|
|
|
@ -108,7 +108,7 @@ describe('Dummy push (force end)', function () {
|
|||
|
||||
describe('Edge condition', function () {
|
||||
|
||||
it.skip('should be ok on buffer border', function () {
|
||||
it('should be ok on buffer border', function () {
|
||||
var i;
|
||||
var data = new Uint8Array(1024 * 16 + 1);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue