mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-11 11:33:43 +01:00
(unw_is_signal_frame): Don't forget to call ia64_free_state_record() after
we're done with the state-record. (Logical change 1.182)
This commit is contained in:
parent
2cdea99143
commit
e2b1175c3c
1 changed files with 5 additions and 1 deletions
|
@ -45,5 +45,9 @@ unw_is_signal_frame (unw_cursor_t *cursor)
|
||||||
|
|
||||||
/* For now, we assume that any non-zero abi marker implies a signal frame.
|
/* For now, we assume that any non-zero abi marker implies a signal frame.
|
||||||
This should get us pretty far. */
|
This should get us pretty far. */
|
||||||
return (sr.abi_marker != 0);
|
ret = (sr.abi_marker != 0);
|
||||||
|
|
||||||
|
ia64_free_state_record (&sr);
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue