1
0
鏡像自 https://git.tukaani.org/xz.git synced 2025-11-07 16:54:49 +00:00

liblzma: Add NULL check to lzma_index_hash_append.

This is for consistency with lzma_index_append.
This commit is contained in:
Jia Tan 2022-08-17 20:20:16 +08:00
父節點 203b008eb2
當前提交 f16e12d5e7

查看文件

@ -145,7 +145,7 @@ lzma_index_hash_append(lzma_index_hash *index_hash, lzma_vli unpadded_size,
lzma_vli uncompressed_size)
{
// Validate the arguments.
if (index_hash->sequence != SEQ_BLOCK
if (index_hash == NULL || index_hash->sequence != SEQ_BLOCK
|| unpadded_size < UNPADDED_SIZE_MIN
|| unpadded_size > UNPADDED_SIZE_MAX
|| uncompressed_size > LZMA_VLI_MAX)