mirror of
https://git.tukaani.org/xz.git
synced 2025-04-03 22:30:58 +00:00
liblzma: Count the extra bytes in LZMA/LZMA2 decoder memory usage
This commit is contained in:
parent
943b012d09
commit
ff5d944749
@ -328,5 +328,6 @@ lzma_lz_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
|
||||
extern uint64_t
|
||||
lzma_lz_decoder_memusage(size_t dictionary_size)
|
||||
{
|
||||
return sizeof(lzma_coder) + (uint64_t)(dictionary_size);
|
||||
return sizeof(lzma_coder) + (uint64_t)(dictionary_size)
|
||||
+ 2 * LZ_DICT_REPEAT_MAX + LZ_DICT_EXTRA;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user