mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
Fixed inflate level 0
This commit is contained in:
parent
b3ff0b746e
commit
c6f445a2e2
2 changed files with 3 additions and 3 deletions
|
@ -907,7 +907,7 @@ function inflate(strm, flush) {
|
|||
bits += 8;
|
||||
}
|
||||
//===//
|
||||
if ((hold & 0xffff) !== ((hold >> 16) ^ 0xffff)) {
|
||||
if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
|
||||
strm.msg = 'invalid stored block lengths';
|
||||
state.mode = BAD;
|
||||
break;
|
||||
|
|
|
@ -69,7 +69,7 @@ describe('Inflate levels', function () {
|
|||
it('level 1', function(done) {
|
||||
testInflate(samples, { level: 1 }, done);
|
||||
});
|
||||
it.skip('level 0', function(done) {
|
||||
it('level 0', function(done) {
|
||||
testInflate(samples, { level: 0 }, done);
|
||||
});
|
||||
|
||||
|
@ -134,7 +134,7 @@ describe('Inflate RAW', function () {
|
|||
it('level 1', function(done) {
|
||||
testInflate(samples, { level: 1, raw: true }, done);
|
||||
});
|
||||
it.skip('level 0', function(done) {
|
||||
it('level 0', function(done) {
|
||||
testInflate(samples, { level: 0, raw: true }, done);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue