Don't access elf tdata in dwarf.c without first checking for an ELF bfd
authorAlan Modra <amodra@gmail.com>
Wed, 10 Dec 2014 03:36:42 +0000 (14:06 +1030)
committerAlan Modra <amodra@gmail.com>
Wed, 10 Dec 2014 04:01:35 +0000 (14:31 +1030)
_bfd_dwarf2_find_nearest_line may be called on a COFF bfd.

* dwarf2.c (read_address): Check bfd_target_elf_flavour before
calling get_elf_backend_data.
(_bfd_dwarf2_find_nearest_line): Fix parens.

bfd/ChangeLog
bfd/dwarf2.c

index 941e045..3942b4e 100644 (file)
@@ -1,3 +1,9 @@
+2014-12-10  Alan Modra  <amodra@gmail.com>
+
+       * dwarf2.c (read_address): Check bfd_target_elf_flavour before
+       calling get_elf_backend_data.
+       (_bfd_dwarf2_find_nearest_line): Fix parens.
+
 2014-12-05  H.J. Lu  <hongjiu.lu@intel.com>
 
        * elf64-x86-64.c (bfd_elf32_get_synthetic_symtab): New.
index 8375da4..93236a6 100644 (file)
@@ -745,7 +745,10 @@ read_alt_indirect_ref (struct comp_unit * unit,
 static bfd_uint64_t
 read_address (struct comp_unit *unit, bfd_byte *buf)
 {
-  int signed_vma = get_elf_backend_data (unit->abfd)->sign_extend_vma;
+  int signed_vma = 0;
+
+  if (bfd_get_flavour (unit->abfd) == bfd_target_elf_flavour)
+    signed_vma = get_elf_backend_data (unit->abfd)->sign_extend_vma;
 
   if (signed_vma)
     {
@@ -3849,7 +3852,7 @@ _bfd_dwarf2_find_nearest_line (bfd *abfd,
                                                     functionname_ptr,
                                                     linenumber_ptr,
                                                     discriminator_ptr,
-                                                    stash)) > 0;
+                                                    stash) != 0);
 
          if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
              == stash->sec->size)