1
0
Fork 0

Merging upstream version 0.9.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-17 22:53:41 +01:00
parent bdc3a79f2b
commit 26c5e8d334
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
22 changed files with 270 additions and 201 deletions

View file

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