summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch')
-rw-r--r--meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch b/meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch
new file mode 100644
index 0000000000..acb37df168
--- /dev/null
+++ b/meta/recipes-devtools/binutils/binutils/0018-PR-21409-segfault-in-_bfd_dwarf2_find_nearest_line.patch
@@ -0,0 +1,33 @@
1From 97e83a100aa8250be783304bfe0429761c6e6b6b Mon Sep 17 00:00:00 2001
2From: Alan Modra <amodra@gmail.com>
3Date: Sun, 23 Apr 2017 13:55:49 +0930
4Subject: [PATCH] PR 21409, segfault in _bfd_dwarf2_find_nearest_line
5
6 PR 21409
7 * dwarf2.c (_bfd_dwarf2_find_nearest_line): Don't segfault when
8 no symbols.
9
10CVE: CVE-2017-8392
11Upstream-Status: Accepted
12
13Signed-off-by: Fan Xin <fan.xin@jp.fujitsu.com>
14---
15 bfd/dwarf2.c | 2 +-
16 1 files changed, 1 insertions(+), 1 deletion(-)
17
18diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c
19index 132a674..0ef3e1f 100644
20--- a/bfd/dwarf2.c
21+++ b/bfd/dwarf2.c
22@@ -4205,7 +4205,7 @@ _bfd_dwarf2_find_nearest_line (bfd *abfd,
23 looking up the function by section + offset uses the
24 DW_AT_decl_line from the function DW_TAG_subprogram for the line,
25 which will be the line of the function name. */
26- if ((section->flags & SEC_CODE) == 0)
27+ if (symbols != NULL && (section->flags & SEC_CODE) == 0)
28 {
29 asymbol **tmp;
30
31--
321.9.1
33