mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-15 20:58:13 +01:00
(fetch_proc_info): Call tdep_find_proc_info() instead of
dwarf_find_proc_info() so that the remote-case works, too. (Logical change 1.224)
This commit is contained in:
parent
f2b40607fd
commit
8fd300ae66
1 changed files with 1 additions and 2 deletions
|
@ -391,8 +391,7 @@ fetch_proc_info (struct dwarf_cursor *c, unw_word_t ip, int need_unwind_info)
|
|||
if (ret == -UNW_ENOINFO)
|
||||
{
|
||||
dynamic = 0;
|
||||
if ((ret = dwarf_find_proc_info (c->as, ip, &c->pi, need_unwind_info,
|
||||
c->as_arg)) < 0)
|
||||
if ((ret = tdep_find_proc_info (c, ip, need_unwind_info)) < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue