diff --git a/lib/zlib/inftrees.js b/lib/zlib/inftrees.js index 8ef756a..4d2b22d 100644 --- a/lib/zlib/inftrees.js +++ b/lib/zlib/inftrees.js @@ -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]]; }