mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-26 17:17:39 +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:
parent
8297866bd4
commit
cdb96f333c
1 changed files with 3 additions and 0 deletions
|
@ -61,5 +61,8 @@ common_init (struct cursor *c)
|
||||||
c->dwarf.ret_addr_column = 0;
|
c->dwarf.ret_addr_column = 0;
|
||||||
c->dwarf.pi_valid = 0;
|
c->dwarf.pi_valid = 0;
|
||||||
c->dwarf.pi_is_dynamic = 0;
|
c->dwarf.pi_is_dynamic = 0;
|
||||||
|
c->dwarf.hint = 0;
|
||||||
|
c->dwarf.prev_rs = 0;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue