diff --git a/lib/inflate.js b/lib/inflate.js index 92a2b60..c32941b 100644 --- a/lib/inflate.js +++ b/lib/inflate.js @@ -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; diff --git a/test/chunks.js b/test/chunks.js index bd7f34b..c79549d 100644 --- a/test/chunks.js +++ b/test/chunks.js @@ -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);