summaryrefslogtreecommitdiff
path: root/system/binutils/CVE-2019-14250.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2023-09-22 23:51:50 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-10-03 21:56:52 -0500
commit2c9ea8d0ea3c4510b5a4c9314c84c4444c933726 (patch)
tree856b85bc2e61dd819f3e9a77d2331338cf290561 /system/binutils/CVE-2019-14250.patch
parentb7807f42fbd231b0783eb0d26fd60b63153ca6d9 (diff)
downloadpackages-2c9ea8d0ea3c4510b5a4c9314c84c4444c933726.tar.gz
packages-2c9ea8d0ea3c4510b5a4c9314c84c4444c933726.tar.bz2
packages-2c9ea8d0ea3c4510b5a4c9314c84c4444c933726.tar.xz
packages-2c9ea8d0ea3c4510b5a4c9314c84c4444c933726.zip
system/binutils: Update to 2.41
* Vastly updated with significant features and target support. * All tests are enabled now and passing! Note: ARMv7 tests require the commit directly before this to be applied to system/gcc. Fixes: #652, #668, #1070
Diffstat (limited to 'system/binutils/CVE-2019-14250.patch')
-rw-r--r--system/binutils/CVE-2019-14250.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/system/binutils/CVE-2019-14250.patch b/system/binutils/CVE-2019-14250.patch
deleted file mode 100644
index fedc4fa7f..000000000
--- a/system/binutils/CVE-2019-14250.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Author: marxin
-Date: Tue Jul 23 07:33:32 2019 UTC
-https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=273718
-
-libiberty: Check zero value shstrndx in simple-object-elf.c
-
---- trunk/libiberty/simple-object-elf.c 2019/07/23 07:31:50 273717
-+++ trunk/libiberty/simple-object-elf.c 2019/07/23 07:33:32 273718
-@@ -548,7 +548,15 @@
- XDELETE (eor);
- return NULL;
- }
--
-+
-+ if (eor->shstrndx == 0)
-+ {
-+ *errmsg = "invalid ELF shstrndx == 0";
-+ *err = 0;
-+ XDELETE (eor);
-+ return NULL;
-+ }
-+
- return (void *) eor;
- }
-