* elf32-vax.c (elf_vax_finish_dynamic_sections): Don't set GOT's
authorMaciej W. Rozycki <macro@linux-mips.org>
Sat, 27 Jul 2013 22:38:50 +0000 (22:38 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Sat, 27 Jul 2013 22:38:50 +0000 (22:38 +0000)
entry size if there is no ELF section data.

bfd/ChangeLog
bfd/elf32-vax.c

index 9a541df3b58c80ae56ce00299c32285ce7665e25..af1a0c6c32ce876d2348ed73e68cb2bb4f7d68b4 100644 (file)
@@ -1,3 +1,8 @@
+2013-07-27  Maciej W. Rozycki  <macro@linux-mips.org>
+
+       * elf32-vax.c (elf_vax_finish_dynamic_sections): Don't set GOT's
+       entry size if there is no ELF section data.
+
 2013-07-27  Maciej W. Rozycki  <macro@linux-mips.org>
 
        * elf32-vax.c (elf_vax_check_relocs) <R_VAX_GOT32, R_VAX_PLT32>:
index 69eab8b9b8e549a23a5d5c8173076a4c819676fe..c6a8f8188b449252cf1016635f62459b7ede994a 100644 (file)
@@ -1989,7 +1989,8 @@ elf_vax_finish_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info)
       bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
     }
 
-  elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
+  if (elf_section_data (sgot->output_section) != NULL)
+    elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
 
   return TRUE;
 }