2013-10-14 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* readelf.c (decode_arm_unwind): Don't initialize `addr'.
This commit is contained in:
parent
b2e951ec58
commit
37e14bc332
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-10-14 Jan-Benedict Glaw <jbglaw@lug-owl.de>
|
||||||
|
|
||||||
|
* readelf.c (decode_arm_unwind): Don't initialize `addr'.
|
||||||
|
|
||||||
2013-10-14 Nick Clifton <nickc@redhat.com>
|
2013-10-14 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* readelf.c (decode_arm_unwind): Initialise addr structure.
|
* readelf.c (decode_arm_unwind): Initialise addr structure.
|
||||||
|
|
|
@ -7170,7 +7170,7 @@ decode_arm_unwind (struct arm_unw_aux_info * aux,
|
||||||
{
|
{
|
||||||
int per_index;
|
int per_index;
|
||||||
unsigned int more_words = 0;
|
unsigned int more_words = 0;
|
||||||
struct absaddr addr = { 0 };
|
struct absaddr addr;
|
||||||
bfd_vma sym_name = (bfd_vma) -1;
|
bfd_vma sym_name = (bfd_vma) -1;
|
||||||
|
|
||||||
if (remaining == 0)
|
if (remaining == 0)
|
||||||
|
|
Loading…
Reference in a new issue