]> git.pld-linux.org Git - packages/binutils.git/blob - binutils-CVE-2019-9073.patch
37256f45f61249120c39039be225c3de81b57465
[packages/binutils.git] / binutils-CVE-2019-9073.patch
1 --- binutils.orig/binutils/objdump.c    2019-02-25 16:12:30.394056901 +0000
2 +++ binutils-2.31.1/binutils/objdump.c  2019-02-25 16:13:07.224778005 +0000
3 @@ -2993,7 +2993,9 @@ dump_bfd_header (bfd *abfd)
4  static void
5  dump_bfd_private_header (bfd *abfd)
6  {
7 -  bfd_print_private_bfd_data (abfd, stdout);
8 +  if (!bfd_print_private_bfd_data (abfd, stdout))
9 +    non_fatal (_("warning: private headers incomplete: %s"),
10 +              bfd_errmsg (bfd_get_error ()));
11  }
12  
13  static void
This page took 0.058116 seconds and 2 git commands to generate.