1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-10-31 23:29:26 +01:00

[x86] (common_init): Fix spurious errors caused by uninitialized members.

Signed-off-by: Richard Henderson <rth@redhat.com>
Signed-off-by: Arun Sharma <arun.sharma@google.com>
This commit is contained in:
Arun Sharma 2006-07-26 22:09:10 -06:00 committed by David Mosberger-Tang
parent 8297866bd4
commit cdb96f333c

View file

@ -61,5 +61,8 @@ common_init (struct cursor *c)
c->dwarf.ret_addr_column = 0;
c->dwarf.pi_valid = 0;
c->dwarf.pi_is_dynamic = 0;
c->dwarf.hint = 0;
c->dwarf.prev_rs = 0;
return 0;
}