mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Fix relpp may be used uninitialized
* objdump.c (dump_relocs_in_section): Warning fix.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2019-03-26 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* objdump.c (dump_relocs_in_section): Warning fix.
|
||||
|
||||
2019-03-25 Tamar Christina <tamar.christina@arm.com>
|
||||
|
||||
* testsuite/binutils-all/arm/in-order-all.d: New test.
|
||||
|
@ -3632,7 +3632,7 @@ dump_relocs_in_section (bfd *abfd,
|
||||
asection *section,
|
||||
void *dummy ATTRIBUTE_UNUSED)
|
||||
{
|
||||
arelent **relpp;
|
||||
arelent **relpp = NULL;
|
||||
long relcount;
|
||||
long relsize;
|
||||
|
||||
|
Reference in New Issue
Block a user