Skip to content

Commit 9591cc8

Browse files
committed
unwind: fix unwinding of VDSO frames on i386 more
It looks like the fix (for rhbz#1129756, #163) in 2543c33 was incomplete. Fixes rhbz#1191586. Signed-off-by: Martin Milata <[email protected]>
1 parent 5c6b800 commit 9591cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core_unwind.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ open_coredump(const char *elf_file, const char *exe_file, char **error_msg)
202202
goto fail_free;
203203
}
204204

205-
ch->eh = elf_begin(ch->fd, ELF_C_READ, NULL);
205+
ch->eh = elf_begin(ch->fd, ELF_C_READ_MMAP, NULL);
206206
if (ch->eh == NULL)
207207
{
208208
set_error_elf("elf_begin");

0 commit comments

Comments
 (0)