1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 16:32:25 +03:00
openwrt-xburst/toolchain/binutils/patches/2.19.1/111-pr7093.elf32-arm.c.patch
juhosg eebe3240a9 [toolchain] fix a small bug in binutils 2.19.1
* http://sourceware.org/bugzilla/show_bug.cgi?id=7093

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15538 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-05-01 14:51:02 +00:00

14 lines
294 B
Diff

--- a/bfd/elf32-arm.c
+++ b/bfd/elf32-arm.c
@@ -4621,6 +4621,10 @@
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;