fix reference error issue #30

master
jesse keane 2014-07-19 02:15:52 -07:00
rodzic f09eb4c5fa
commit a809b0bde2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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