Blame SOURCES/binutils-CVE-2019-9077.patch

a6dfc0
--- binutils.orig/binutils/readelf.c	2019-02-26 11:17:12.414525772 +0000
a6dfc0
+++ binutils-2.31.1/binutils/readelf.c	2019-02-26 12:11:40.642876742 +0000
a6dfc0
@@ -16009,6 +16009,13 @@ process_mips_specific (Filedata * fileda
a6dfc0
 	  return FALSE;
a6dfc0
 	}
a6dfc0
 
a6dfc0
+      /* PR 24243  */
a6dfc0
+      if (sect->sh_size < sizeof (* eopt))
a6dfc0
+	{
a6dfc0
+	  error (_("The MIPS options section is too small.\n"));
a6dfc0
+	  return FALSE;
a6dfc0
+	}
a6dfc0
+
a6dfc0
       eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
a6dfc0
                                                 sect->sh_size, _("options"));
a6dfc0
       if (eopt)