mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 15:00:34 +00:00
* dwarf2.c (comp_unit_find_nearest_line): Check for end of
compilation unit.
This commit is contained in:
parent
aec2f56188
commit
3f5864e1f4
@ -1,3 +1,8 @@
|
||||
2001-10-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* dwarf2.c (comp_unit_find_nearest_line): Check for end of
|
||||
compilation unit.
|
||||
|
||||
2001-10-06 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* bfd.c (bfd_assert): Report bfd version.
|
||||
|
@ -1551,7 +1551,8 @@ comp_unit_find_nearest_line (unit, addr,
|
||||
return false;
|
||||
}
|
||||
|
||||
if (! scan_unit_for_functions (unit))
|
||||
if (unit->first_child_die_ptr < unit->end_ptr
|
||||
&& ! scan_unit_for_functions (unit))
|
||||
{
|
||||
unit->error = 1;
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user