* elf32-arm.c (bfd_elf32_arm_init_maps): Only process ARM ELF
        object files.
This commit is contained in:
Nick Clifton 2008-12-23 11:46:17 +00:00
parent d6e0b1603b
commit af1f44191e
2 changed files with 10 additions and 0 deletions

View file

@ -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

View file

@ -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;