PR binutils/4797
authorNick Clifton <nickc@redhat.com>
Thu, 19 Jul 2007 16:51:10 +0000 (16:51 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 19 Jul 2007 16:51:10 +0000 (16:51 +0000)
* dwarf2.c: (find_line) Do not dereference functionname_ptr if do_line is true.

bfd/ChangeLog
bfd/dwarf2.c

index 81a8fd4..a90b270 100644 (file)
@@ -1,3 +1,9 @@
+2007-07-19  Doug Kwan  <dougkwan@google.com>
+
+       PR binutils/4797
+       * dwarf2.c: (find_line) Do not dereference functionname_ptr if
+       do_line is true.
+
 2007-07-18  Bob Wilson  <bob.wilson@acm.org>
        
        * elf32-xtensa.c (xtensa_callback_required_dependence): Ignore
index 87bee39..bcaebc2 100644 (file)
@@ -2380,7 +2380,8 @@ find_line (bfd *abfd,
   else
     addr += section->vma;
   *filename_ptr = NULL;
-  *functionname_ptr = NULL;
+  if (! do_line)
+    *functionname_ptr = NULL;
   *linenumber_ptr = 0;
 
   if (! *pinfo)