Skip to content

Commit d918552

Browse files
committed
Merge pull request #218 from abrt/rhbz1191586_i386_vdso
unwind: fix unwinding of VDSO frames on i386 more
2 parents 5c6b800 + 9591cc8 commit d918552

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)