From: Maciej W. Rozycki Date: Sat, 27 Jul 2013 22:38:50 +0000 (+0000) Subject: * elf32-vax.c (elf_vax_finish_dynamic_sections): Don't set GOT's X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6518c488a569b2c32c062f16412ffbf869bbbe3;p=binutils-gdb.git * elf32-vax.c (elf_vax_finish_dynamic_sections): Don't set GOT's entry size if there is no ELF section data. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9a541df3b58..af1a0c6c32c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-07-27 Maciej W. Rozycki + + * 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 * elf32-vax.c (elf_vax_check_relocs) : diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c index 69eab8b9b8e..c6a8f8188b4 100644 --- a/bfd/elf32-vax.c +++ b/bfd/elf32-vax.c @@ -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; }