From: Ian Lance Taylor Date: Sun, 16 Jun 2024 22:39:53 +0000 (-0700) Subject: libbacktrace: it's OK if zstd decompressor sees no backward bits X-Git-Tag: basepoints/gcc-16~8193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8348f8c22ff1ac61df45d63739e1028f87d6ef88;p=thirdparty%2Fgcc.git libbacktrace: it's OK if zstd decompressor sees no backward bits * elf.c (elf_fetch_bits_backward) Don't fail if no bits are available. --- diff --git a/libbacktrace/elf.c b/libbacktrace/elf.c index 3cd87020b03..735f8752500 100644 --- a/libbacktrace/elf.c +++ b/libbacktrace/elf.c @@ -1182,14 +1182,7 @@ elf_fetch_bits_backward (const unsigned char **ppin, val = *pval; if (unlikely (pin <= pinend)) - { - if (bits == 0) - { - elf_uncompress_failed (); - return 0; - } - return 1; - } + return 1; pin -= 4;