1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-06 01:23:41 +01:00

Unused member is removed from callback_data structure

This commit is contained in:
Alexander Esilevich 2010-07-30 05:03:43 +07:00
parent 97f1d2758d
commit ecbd61b631

View file

@ -51,7 +51,6 @@ struct callback_data
{
/* in: */
unw_word_t ip; /* instruction-pointer we're looking for */
unw_addr_space_t as; /* address space */
void *arg;
/* out: */
unw_word_t fde_addr; /* FDE address */
@ -745,7 +744,6 @@ dwarf_find_proc_info (unw_addr_space_t as, unw_word_t ip,
memset (&cb_data, 0, sizeof (cb_data));
cb_data.ip = ip;
cb_data.as = as;
cb_data.arg = arg;
sigprocmask (SIG_SETMASK, &unwi_full_mask, &saved_mask);