fix inflate wrapper cycle condition issue #29

This commit is contained in:
nik 2014-07-05 21:54:46 -03:00
parent 87a6a88255
commit c449f4ff69
2 changed files with 2 additions and 2 deletions

View file

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

View file

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