diff options
Diffstat (limited to 'decompress_lunzip.c')
-rw-r--r-- | decompress_lunzip.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/decompress_lunzip.c b/decompress_lunzip.c index 3425997..7019477 100644 --- a/decompress_lunzip.c +++ b/decompress_lunzip.c @@ -1,7 +1,7 @@ /* * Wrapper for decompressing LZIP-compressed kernel, initramfs, and initrd * - * Copyright (C) 2016-2024 Antonio Diaz Diaz. + * Copyright (C) 2016-2025 Antonio Diaz Diaz. * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ @@ -62,6 +62,9 @@ STATIC int INIT __lunzip(unsigned char *inbuf, long in_len, case LZIP_BAD_CRC: error("CRC mismatch in LZIP-compressed data."); break; + case LZIP_EMPTY_MEMBER: + error("Empty member in LZIP multimember data."); + break; default: error("Bug in the LZIP decompressor."); } return retval; |