1
0
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:
Lasse Collin 2025-03-25 15:18:31 +02:00
parent 943b012d09
commit ff5d944749
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

@ -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;
}