diff options
Diffstat (limited to 'src/lib/util/huffman.cpp')
-rw-r--r-- | src/lib/util/huffman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/huffman.cpp b/src/lib/util/huffman.cpp index 62756b89a17..c38d78853fb 100644 --- a/src/lib/util/huffman.cpp +++ b/src/lib/util/huffman.cpp @@ -316,7 +316,7 @@ huffman_error huffman_context_base::import_tree_huffman(bitstream_in &bitbuf) huffman_error huffman_context_base::export_tree_huffman(bitstream_out &bitbuf) { // first RLE compress the lengths of all the nodes - dynamic_buffer rle_data(m_numcodes); + std::vector<UINT8> rle_data(m_numcodes); UINT8 *dest = &rle_data[0]; std::vector<UINT16> rle_lengths(m_numcodes/3); UINT16 *lengths = &rle_lengths[0]; |