diff options
| author | Adrian Bunk <bunk@stusta.de> | 2019-10-26 23:42:12 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-28 05:31:42 +0000 |
| commit | c79f8c1513938deff3ca2aaa8c8727ed3be1b718 (patch) | |
| tree | ade3751cedf24311c68f6ad2bbd77228dca13880 | |
| parent | 38b772dab7bcc3cf263e5efc7580a4b00a1a0b2c (diff) | |
| download | poky-c79f8c1513938deff3ca2aaa8c8727ed3be1b718.tar.gz | |
gcc: Remove stale gcc 8 patchfile
(From OE-Core rev: 176c70277d82228bc440f3fcd40ea90f0b12d641)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-8.3/CVE-2019-14250.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-8.3/CVE-2019-14250.patch b/meta/recipes-devtools/gcc/gcc-8.3/CVE-2019-14250.patch deleted file mode 100644 index e327684e16..0000000000 --- a/meta/recipes-devtools/gcc/gcc-8.3/CVE-2019-14250.patch +++ /dev/null | |||
| @@ -1,44 +0,0 @@ | |||
| 1 | From a4f1b58eb48b349a5f353bc69c30be553506d33b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | ||
| 3 | Date: Thu, 25 Jul 2019 10:48:26 +0000 | ||
| 4 | Subject: [PATCH] 2019-07-25 Richard Biener <rguenther@suse.de> | ||
| 5 | |||
| 6 | PR lto/90924 | ||
| 7 | Backport from mainline | ||
| 8 | 2019-07-12 Ren Kimura <rkx1209dev@gmail.com> | ||
| 9 | |||
| 10 | * simple-object-elf.c (simple_object_elf_match): Check zero value | ||
| 11 | shstrndx. | ||
| 12 | |||
| 13 | |||
| 14 | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-8-branch@273794 138bc75d-0d04-0410-961f-82ee72b054a4 | ||
| 15 | |||
| 16 | Upstream-Status: Backport | ||
| 17 | Affectes: < 9.2 | ||
| 18 | CVE: CVE-2019-14250 | ||
| 19 | Dropped changelog | ||
| 20 | Signed-off-by: Armin Kuster <Akustre@mvista.com> | ||
| 21 | |||
| 22 | --- | ||
| 23 | libiberty/simple-object-elf.c | 8 ++++++++ | ||
| 24 | 2 files changed, 17 insertions(+) | ||
| 25 | |||
| 26 | Index: gcc-8.2.0/libiberty/simple-object-elf.c | ||
| 27 | =================================================================== | ||
| 28 | --- gcc-8.2.0.orig/libiberty/simple-object-elf.c | ||
| 29 | +++ gcc-8.2.0/libiberty/simple-object-elf.c | ||
| 30 | @@ -549,6 +549,14 @@ simple_object_elf_match (unsigned char h | ||
| 31 | return NULL; | ||
| 32 | } | ||
| 33 | |||
| 34 | + if (eor->shstrndx == 0) | ||
| 35 | + { | ||
| 36 | + *errmsg = "invalid ELF shstrndx == 0"; | ||
| 37 | + *err = 0; | ||
| 38 | + XDELETE (eor); | ||
| 39 | + return NULL; | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | return (void *) eor; | ||
| 43 | } | ||
| 44 | |||
