]> wimlib.net Git - wimlib/blobdiff - src/xpress-decompress.c
Faster Huffman symbol decoding
[wimlib] / src / xpress-decompress.c
index 98ad03d44d0905eb050b19ceb3314c43a768c9ff..1ab81e3192ea72de6e15c4a56d1fc7d76c014439 100644 (file)
@@ -156,7 +156,7 @@ xpress_lz_decode(struct input_bitstream * restrict istream,
 
                bitstream_ensure_bits(istream, 16);
 
-               sym = read_huffsym(istream, decode_table, lens,
+               sym = read_huffsym(istream, decode_table,
                                   XPRESS_NUM_SYMBOLS, XPRESS_TABLEBITS,
                                   XPRESS_MAX_CODEWORD_LEN);
                if (sym < XPRESS_NUM_CHARS) {