Fixed inflate level 0

This commit is contained in:
Vitaly Puzrin 2014-03-12 06:10:15 +04:00
parent b3ff0b746e
commit c6f445a2e2
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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);
});