1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-04-18 02:22:16 +02:00

(common_init): Clear "is_signal_frame". Instead of calling ia64_make_proc_info(),

simply clear "pi_valid" flag.

(Logical change 1.30)
This commit is contained in:
mostang.com!davidm 2002-12-12 09:17:41 +00:00
parent 653c9006ac
commit 2e0505826f

View file

@ -106,8 +106,10 @@ common_init (struct ia64_cursor *c)
} }
#endif #endif
c->sigcontext_loc = 0; c->sigcontext_loc = 0;
c->is_signal_frame = 0;
c->hint = 0; c->hint = 0;
c->prev_script = 0; c->prev_script = 0;
return ia64_make_proc_info (c); c->pi_valid = 0;
return 0;
} }