fix reference error issue #30

This commit is contained in:
jesse keane 2014-07-19 02:15:52 -07:00
parent f09eb4c5fa
commit a809b0bde2

View file

@ -267,7 +267,7 @@ module.exports = function inflate_table(type, lens, lens_index, codes, table, ta
/* go to next symbol, update count, len */
sym++;
if (--(count[len]) === 0) {
if (--count[len] === 0) {
if (len === max) { break; }
len = lens[lens_index + work[sym]];
}