mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-23 16:07:37 +01:00
(ia64_get_stacked): Allow NULL "locp".
(Logical change 1.76)
This commit is contained in:
parent
dc0bee88f3
commit
7057901782
1 changed files with 3 additions and 1 deletions
|
@ -378,7 +378,9 @@ ia64_get_stacked (struct cursor *c, unw_word_t reg,
|
|||
|
||||
assert (reg >= 32 && reg < 128);
|
||||
|
||||
*locp = loc = ia64_rse_skip_regs (c->bsp, regs_to_skip);
|
||||
loc = ia64_rse_skip_regs (c->bsp, regs_to_skip);
|
||||
if (locp)
|
||||
*locp = loc;
|
||||
if (rnat_locp)
|
||||
{
|
||||
*rnat_locp = ia64_rse_rnat_addr (loc);
|
||||
|
|
Loading…
Reference in a new issue