mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-29 10:17:38 +01:00
(get_list_addr): Don't fail with -UNW_ENOINFO just because something
in /proc/maps isn't mappable. (Logical change 1.279)
This commit is contained in:
parent
61421373d7
commit
346b85ec54
1 changed files with 2 additions and 4 deletions
|
@ -55,10 +55,8 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (elf_map_image (&ui->ei, path) < 0)
|
if (elf_map_image (&ui->ei, path) < 0)
|
||||||
{
|
/* ignore unmappable stuff like "/SYSV00001b58 (deleted)" */
|
||||||
maps_close (&mi);
|
continue;
|
||||||
return -UNW_ENOINFO;
|
|
||||||
}
|
|
||||||
|
|
||||||
Debug (16, "checking object %s\n", path);
|
Debug (16, "checking object %s\n", path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue