From 4fabe71ea97e3d8c3241fe923619a7ad7f688842 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 25 Feb 2003 04:39:32 +0000 Subject: [PATCH] * elflink.h (elf_link_read_relocs_from_section): Don't abort with wrong reloc sizes. --- bfd/ChangeLog | 2 ++ bfd/elflink.h | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index eb0e0006ece..bf733ca76a2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -3,6 +3,8 @@ * elflink.h (elf_bfd_final_link): Apportion reloc counts to rel_hdr and rel_hdr2 when initially counting input relocs rather than after creating output reloc sections. + (elf_link_read_relocs_from_section): Don't abort with wrong reloc + sizes. * Makefile.am: Run "make dep-am". * Makefile.in: Regenerate. diff --git a/bfd/elflink.h b/bfd/elflink.h index bcc7d1f7c2c..7d2d2e24eae 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2579,7 +2579,10 @@ elf_link_read_relocs_from_section (abfd, shdr, external_relocs, else if (shdr->sh_entsize == sizeof (Elf_External_Rela)) swap_in = bed->s->swap_reloca_in; else - abort (); + { + bfd_set_error (bfd_error_wrong_format); + return FALSE; + } erela = external_relocs; erelaend = erela + NUM_SHDR_ENTRIES (shdr) * shdr->sh_entsize; -- 2.30.2