1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-26 03:11:44 +02: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:
hp.com!davidm 2004-03-19 02:35:27 +00:00
parent 2cdea99143
commit e2b1175c3c

View file

@ -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.
This should get us pretty far. */
return (sr.abi_marker != 0);
ret = (sr.abi_marker != 0);
ia64_free_state_record (&sr);
return ret;
}