From f6df62c820e674bda7550f998e83f8b95f22d0fb Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 21 Apr 2011 21:16:51 +0000 Subject: [PATCH] Return false on dynamic symbol error. 2011-04-21 H.J. Lu * elf32-i386.c (elf_i386_finish_dynamic_symbol): Return false on dynamic symbol error. * elf64-x86-64.c (elf_x86_64_finish_dynamic_symbol): Likewise. --- bfd/ChangeLog | 6 ++++++ bfd/elf32-i386.c | 2 +- bfd/elf64-x86-64.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 94f3e223d1f..225a3fb40ab 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2011-04-21 H.J. Lu + + * elf32-i386.c (elf_i386_finish_dynamic_symbol): Return false + on dynamic symbol error. + * elf64-x86-64.c (elf_x86_64_finish_dynamic_symbol): Likewise. + 2011-04-20 Tristan Gingold * config.bfd (alpha*-*-*vms*, ia64*-*-*vms*): Define targ_selvecs. diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index 8934d277864..1bdc05e9ae2 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -4189,7 +4189,7 @@ elf_i386_finish_dynamic_symbol (bfd *output_bfd, || plt == NULL || gotplt == NULL || relplt == NULL) - abort (); + return FALSE; /* Get the index in the procedure linkage table which corresponds to this symbol. This is the index of this symbol diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 84ee1017831..6190a988477 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -3961,7 +3961,7 @@ elf_x86_64_finish_dynamic_symbol (bfd *output_bfd, || plt == NULL || gotplt == NULL || relplt == NULL) - abort (); + return FALSE; /* Get the index in the procedure linkage table which corresponds to this symbol. This is the index of this symbol -- 2.30.2