From a9feb75bdf3b2f1c097cf2520f22cb200112a3ac Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 13 Mar 2024 00:20:14 +0100 Subject: [PATCH] libbacktrace: read symbol table of debuginfo file (36cfdc1) --- public/libbacktrace/elf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/libbacktrace/elf.cpp b/public/libbacktrace/elf.cpp index 22a4ba20..15a524a3 100644 --- a/public/libbacktrace/elf.cpp +++ b/public/libbacktrace/elf.cpp @@ -6891,7 +6891,7 @@ elf_add (struct backtrace_state *state, const char *filename, int descriptor, if (symtab_shndx == 0) symtab_shndx = dynsym_shndx; - if (symtab_shndx != 0 && !debuginfo) + if (symtab_shndx != 0) { const b_elf_shdr *symtab_shdr; unsigned int strtab_shndx;