mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 22:40:24 +00:00
PR 7093
* elf32-arm.c (bfd_elf32_arm_init_maps): Only process ARM ELF object files.
This commit is contained in:
parent
d6e0b1603b
commit
af1f44191e
@ -1,3 +1,9 @@
|
||||
2008-12-23 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 7093
|
||||
* elf32-arm.c (bfd_elf32_arm_init_maps): Only process ARM ELF
|
||||
object files.
|
||||
|
||||
2008-12-23 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* mach-o.c (bfd_mach_o_make_bfd_section): Use the standard ELF name
|
||||
|
@ -4608,6 +4608,10 @@ bfd_elf32_arm_init_maps (bfd *abfd)
|
||||
Elf_Internal_Shdr *hdr;
|
||||
unsigned int i, localsyms;
|
||||
|
||||
/* PR 7093: Make sure that we are dealing with an arm elf binary. */
|
||||
if (! is_arm_elf (abfd))
|
||||
return;
|
||||
|
||||
if ((abfd->flags & DYNAMIC) != 0)
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user