869a11
diff -rup binutils.orig/bfd/elf32-i386.c binutils-2.30/bfd/elf32-i386.c
869a11
--- binutils.orig/bfd/elf32-i386.c	2018-02-27 17:25:53.961140597 +0000
869a11
+++ binutils-2.30/bfd/elf32-i386.c	2018-02-27 17:27:14.115133477 +0000
869a11
@@ -383,7 +383,7 @@ elf_i386_rtype_to_howto (bfd *abfd, unsi
869a11
       /* xgettext:c-format */
869a11
       _bfd_error_handler (_("%B: invalid relocation type %d"),
869a11
 			  abfd, (int) r_type);
869a11
-      indx = R_386_NONE;
869a11
+      return NULL;
869a11
     }
869a11
   /* PR 17512: file: 0f67f69d.  */
869a11
   if (elf_howto_table [indx].type != r_type)
869a11
diff -rup binutils.orig/bfd/elf64-ppc.c binutils-2.30/bfd/elf64-ppc.c
869a11
--- binutils.orig/bfd/elf64-ppc.c	2018-02-27 17:25:53.969140496 +0000
869a11
+++ binutils-2.30/bfd/elf64-ppc.c	2018-02-27 17:27:56.213604518 +0000
869a11
@@ -2516,9 +2516,10 @@ ppc64_elf_info_to_howto (bfd *abfd, arel
869a11
       /* xgettext:c-format */
869a11
       _bfd_error_handler (_("%B: invalid relocation type %d"),
869a11
 			  abfd, (int) type);
869a11
-      type = R_PPC64_NONE;
869a11
+      cache_ptr->howto = NULL;
869a11
     }
869a11
-  cache_ptr->howto = ppc64_elf_howto_table[type];
869a11
+  else
869a11
+    cache_ptr->howto = ppc64_elf_howto_table[type];
869a11
 }
869a11
 
869a11
 /* Handle the R_PPC64_ADDR16_HA and similar relocs.  */
869a11
diff -rup binutils.orig/bfd/elf64-s390.c binutils-2.30/bfd/elf64-s390.c
869a11
--- binutils.orig/bfd/elf64-s390.c	2018-02-27 17:25:53.968140509 +0000
869a11
+++ binutils-2.30/bfd/elf64-s390.c	2018-02-27 17:28:24.632247443 +0000
869a11
@@ -372,9 +372,10 @@ elf_s390_info_to_howto (bfd *abfd ATTRIB
869a11
 	  /* xgettext:c-format */
869a11
 	  _bfd_error_handler (_("%B: invalid relocation type %d"),
869a11
 			      abfd, (int) r_type);
869a11
-	  r_type = R_390_NONE;
869a11
+	  cache_ptr->howto = NULL;
869a11
 	}
869a11
-      cache_ptr->howto = &elf_howto_table[r_type];
869a11
+      else
869a11
+	cache_ptr->howto = &elf_howto_table[r_type];
869a11
     }
869a11
 }
869a11
 
869a11
diff -rup binutils.orig/bfd/elf64-x86-64.c binutils-2.30/bfd/elf64-x86-64.c
869a11
--- binutils.orig/bfd/elf64-x86-64.c	2018-02-27 17:25:53.964140559 +0000
869a11
+++ binutils-2.30/bfd/elf64-x86-64.c	2018-02-27 17:29:12.554645307 +0000
869a11
@@ -284,7 +284,7 @@ elf_x86_64_rtype_to_howto (bfd *abfd, un
869a11
 	  /* xgettext:c-format */
869a11
 	  _bfd_error_handler (_("%B: invalid relocation type %d"),
869a11
 			      abfd, (int) r_type);
869a11
-	  r_type = R_X86_64_NONE;
869a11
+	  return NULL;
869a11
 	}
869a11
       i = r_type;
869a11
     }
869a11
@@ -347,8 +347,6 @@ elf_x86_64_info_to_howto (bfd *abfd ATTR
869a11
       && r_type != (unsigned int) R_X86_64_GNU_VTENTRY)
869a11
     r_type &= ~R_X86_64_converted_reloc_bit;
869a11
   cache_ptr->howto = elf_x86_64_rtype_to_howto (abfd, r_type);
869a11
-
869a11
-  BFD_ASSERT (r_type == cache_ptr->howto->type || cache_ptr->howto->type == R_X86_64_NONE);
869a11
 }
869a11
 
869a11
 /* Support for core dump NOTE sections.  */
869a11
diff -rup binutils.orig/bfd/elfcode.h binutils-2.30/bfd/elfcode.h
869a11
--- binutils.orig/bfd/elfcode.h	2018-02-27 17:25:53.964140559 +0000
869a11
+++ binutils-2.30/bfd/elfcode.h	2018-02-27 17:26:57.234345581 +0000
869a11
@@ -1474,6 +1474,12 @@ elf_slurp_reloc_table_from_section (bfd
869a11
 	(*ebd->elf_info_to_howto) (abfd, relent, &rela);
869a11
       else
869a11
 	(*ebd->elf_info_to_howto_rel) (abfd, relent, &rela);
869a11
+
869a11
+      if (relent->howto == NULL)
869a11
+	{
869a11
+	  bfd_set_error (bfd_error_bad_value);
869a11
+	  goto error_return;
869a11
+	}
869a11
     }
869a11
 
869a11
   if (allocated != NULL)
869a11
diff -rup binutils.orig/binutils/objcopy.c binutils-2.30/binutils/objcopy.c
869a11
--- binutils.orig/binutils/objcopy.c	2018-02-27 17:25:53.185150347 +0000
869a11
+++ binutils-2.30/binutils/objcopy.c	2018-02-27 17:30:05.806976202 +0000
869a11
@@ -3022,10 +3022,19 @@ copy_object (bfd *ibfd, bfd *obfd, const
869a11
 	 haven't been set yet.  mark_symbols_used_in_relocations will
869a11
 	 ignore input sections which have no corresponding output
869a11
 	 section.  */
869a11
+      bfd_set_error (bfd_error_no_error);
869a11
       if (strip_symbols != STRIP_ALL)
869a11
-	bfd_map_over_sections (ibfd,
869a11
-			       mark_symbols_used_in_relocations,
869a11
-			       isympp);
869a11
+	{
869a11
+	  bfd_map_over_sections (ibfd,
869a11
+				 mark_symbols_used_in_relocations,
869a11
+				 isympp);
869a11
+	  if (bfd_get_error () != bfd_error_no_error)
869a11
+	    {
869a11
+	      status = 1;
869a11
+	      return FALSE;
869a11
+	    }
869a11
+	}
869a11
+
869a11
       osympp = (asymbol **) xmalloc ((symcount + add_symbols + 1) * sizeof (asymbol *));
869a11
       symcount = filter_symbols (ibfd, obfd, osympp, isympp, symcount);
869a11
     }