diff --git a/src/core/lzw_stream.js b/src/core/lzw_stream.js index 7971aeb26..465cffddf 100644 --- a/src/core/lzw_stream.js +++ b/src/core/lzw_stream.js @@ -56,7 +56,6 @@ class LZWStream extends DecodeStream { } this.bitsCached = bitsCached -= n; this.cachedData = cachedData; - this.lastCode = null; return (cachedData >>> bitsCached) & ((1 << n) - 1); }