mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-02 08:09:27 +01:00
(ia64_find_save_locs): Call ia64_fetch_proc_info() early on and
bug out if it fails (before creating a new script). (Logical change 1.95)
This commit is contained in:
parent
d6946f580b
commit
46f5783f5d
1 changed files with 4 additions and 0 deletions
|
@ -481,6 +481,10 @@ ia64_find_save_locs (struct cursor *c)
|
|||
sigset_t saved_sigmask;
|
||||
int ret = 0;
|
||||
|
||||
ret = ia64_fetch_proc_info (c, c->ip, 1);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
cache = get_script_cache (c->as);
|
||||
|
||||
if (likely (global_cache))
|
||||
|
|
Loading…
Reference in a new issue