From: Tom Tromey Date: Wed, 14 Aug 2019 20:01:57 +0000 (-0600) Subject: Fix CU overrun in scan_unit_for_symbols X-Git-Tag: binutils-2_33~228 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05192282ca19f8f5c201f630caed68b1632e2619;p=thirdparty%2Fbinutils-gdb.git Fix CU overrun in scan_unit_for_symbols A customer program had a DWARF CU that consisted of just a CU DIE, without any children. In this situation, scan_unit_for_symbols will try to read past the end of the current CU, and will take use the first bytes of the next CU as an abbrev, printing an error message. This patch fixes the bug by changing scan_unit_for_symbols to stop at the end of the CU rather than the end of the .debug_info section. bfd/ChangeLog 2019-08-15 Tom Tromey * dwarf2.c (scan_unit_for_symbols): Check for end of CU, not end of section. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 8a028cf0323..ad750bcd9a2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2019-08-15 Tom Tromey + + * dwarf2.c (scan_unit_for_symbols): Check for end of CU, not end + of section. + 2019-08-14 Alan Modra PR 24623 diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 057fd913173..d56244b8ff0 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -3072,7 +3072,7 @@ scan_unit_for_symbols (struct comp_unit *unit) { bfd *abfd = unit->abfd; bfd_byte *info_ptr = unit->first_child_die_ptr; - bfd_byte *info_ptr_end = unit->stash->info_ptr_end; + bfd_byte *info_ptr_end = unit->end_ptr; int nesting_level = 0; struct nest_funcinfo { struct funcinfo *func;