summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch')
-rw-r--r--meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch b/meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch
new file mode 100644
index 0000000000..c8741b13ca
--- /dev/null
+++ b/meta/recipes-devtools/binutils/binutils/CVE-2017-9955_3.patch
@@ -0,0 +1,44 @@
1commit 1f473e3d0ad285195934e6a077c7ed32afe66437
2Author: H.J. Lu <hjl.tools@gmail.com>
3Date: Mon Jun 26 15:47:16 2017 -0700
4
5 Add a missing line to _bfd_generic_get_section_contents_in_window
6
7 PR binutils/21665
8 * libbfd.c (_bfd_generic_get_section_contents_in_window): Add
9 a missing line.
10
11Upstream-Status: Backport
12
13CVE: CVE-2017-9955
14Signed-off-by: Thiruvadi Rajaraman <trajaraman@mvista.com>
15
16Index: git/bfd/libbfd.c
17===================================================================
18--- git.orig/bfd/libbfd.c 2017-09-21 17:57:11.424955516 +0530
19+++ git/bfd/libbfd.c 2017-09-21 17:58:57.000000000 +0530
20@@ -867,6 +867,7 @@
21 else
22 sz = section->size;
23 filesz = bfd_get_file_size (abfd);
24+ if (filesz < 0)
25 {
26 /* This should never happen. */
27 abort ();
28Index: git/bfd/ChangeLog
29===================================================================
30--- git.orig/bfd/ChangeLog 2017-09-21 17:57:11.424955516 +0530
31+++ git/bfd/ChangeLog 2017-09-21 18:01:32.258884464 +0530
32@@ -14,6 +14,12 @@
33 2017-06-26 H.J. Lu <hongjiu.lu@intel.com>
34
35 PR binutils/21665
36+ * libbfd.c (_bfd_generic_get_section_contents_in_window): Add
37+ a missing line.
38+
39+2017-06-26 H.J. Lu <hongjiu.lu@intel.com>
40+
41+ PR binutils/21665
42 * compress.c (bfd_get_full_section_contents): Don't check the
43 file size here.
44 * libbfd.c (_bfd_generic_get_section_contents): Check for and