From 279f7ba0dfd407528153bf186c19b2ed8bac8887 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 27 Jun 2026 11:05:12 +0300 Subject: [PATCH] libbacktrace: Fix missing table assignment in RLE seq decode Fixes segfault when decompressing mesa debuginfo on Aeryn. --- public/libbacktrace/elf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/public/libbacktrace/elf.cpp b/public/libbacktrace/elf.cpp index 924fd9f3..c0e79a1b 100644 --- a/public/libbacktrace/elf.cpp +++ b/public/libbacktrace/elf.cpp @@ -4320,6 +4320,7 @@ elf_zstd_unpack_seq_decode (int mode, decode->table_bits = 0; if (!conv (&entry, 0, table)) return 0; + decode->table = table; } break;