diff options
author | Nick Clifton <nickc@redhat.com> | 2009-06-18 10:48:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-06-18 10:48:57 +0000 |
commit | 8c968cdc0452fc297659633795553c9cb1e04321 (patch) | |
tree | dce0f3b77b8d8354eb97ed41a9c1a3ed2018e4d8 | |
parent | f1c2bfe6b2eb5f4671b2e3da2d743f39b4c4a574 (diff) | |
download | gdb-8c968cdc0452fc297659633795553c9cb1e04321.tar.gz |
* elflink.c (elf_link_sort_relocs): Return early if there are no
relocs to sort.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elflink.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b1ebfcfcc8e..8f3edb08d72 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 70bca46953e..2366dd40478 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) |