From 6bd00c5db5d6f508c7b60a487934fecbb01247e6 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 9 Jun 2005 13:32:30 +0000 Subject: [PATCH] 2005-06-09 H.J. Lu PR 1000 * dwarf2.c (lookup_address_in_line_info_table): Restore code handling NULL function info, removed with 2005-04-03 change. --- bfd/ChangeLog | 6 ++++++ bfd/dwarf2.c | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1c90c89..54edc73 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2005-06-09 H.J. Lu + + PR 1000 + * dwarf2.c (lookup_address_in_line_info_table): Restore code + handling NULL function info, removed with 2005-04-03 change. + 2005-06-08 Mark Mitchell * opncls.c (bfd_fopen): Mark returned BFD as cacheable if FD == -1. diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 410a51e..8d21e5a 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -1326,6 +1326,11 @@ lookup_address_in_line_info_table (struct line_info_table *table, *linenumber_ptr = each_line->line; } } + else + { + *filename_ptr = each_line->filename; + *linenumber_ptr = each_line->line; + } } if (addr_match && !each_line->end_sequence) -- 2.7.4