aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2009-06-18 10:48:58 +0000
committerNick Clifton <nickc@redhat.com>2009-06-18 10:48:58 +0000
commit5e486aa1337535581cb22545e8bb39e3e029bac2 (patch)
treee656771fac109d581bcaada5e24318d5e7f9f5d0 /bfd
parent32425da952b9dd3668ef750690eeaab6d8393cbd (diff)
downloadgdb-5e486aa1337535581cb22545e8bb39e3e029bac2.zip
gdb-5e486aa1337535581cb22545e8bb39e3e029bac2.tar.gz
gdb-5e486aa1337535581cb22545e8bb39e3e029bac2.tar.bz2
* elflink.c (elf_link_sort_relocs): Return early if there are no
relocs to sort.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elflink.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index b1ebfcf..8f3edb0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-18 Nick Clifton <nickc@redhat.com>
+
+ * elflink.c (elf_link_sort_relocs): Return early if there are no
+ relocs to sort.
+
2009-06-18 Dave Korn <dave.korn.cygwin@gmail.com>
Merge cegcc and mingw32ce target name changes from
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 70bca46..2366dd40 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -8082,6 +8082,8 @@ elf_link_sort_relocs (bfd *abfd, struct bfd_link_info *info, asection **psec)
+ (i2e - 1) * sizeof (Elf_Internal_Rela));
count = dynamic_relocs->size / ext_size;
+ if (count == 0)
+ return 0;
sort = bfd_zmalloc (sort_elt * count);
if (sort == NULL)