diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2013-08-24 22:16:41 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2013-08-24 22:16:41 +0000 |
commit | 387f8054ca819e73bd9d0c17d23dbe4e68c67947 (patch) | |
tree | f5de35e954fd23c64de9b724604b5a96394ac275 /bfd/elf64-s390.c | |
parent | b122423813ed1cf2255243e21bd0a6229fcadef6 (diff) | |
download | ppe42-binutils-387f8054ca819e73bd9d0c17d23dbe4e68c67947.tar.gz ppe42-binutils-387f8054ca819e73bd9d0c17d23dbe4e68c67947.zip |
* elf32-tilepro.c (tilepro_elf_finish_dynamic_sections): Don't
set GOT's entry size if there is no ELF section data.
* elf64-s390.c (elf_s390_finish_dynamic_sections): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_finish_dynamic_sections):
Likewise.
Diffstat (limited to 'bfd/elf64-s390.c')
-rw-r--r-- | bfd/elf64-s390.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bfd/elf64-s390.c b/bfd/elf64-s390.c index 75413e03a9..3aea98ce76 100644 --- a/bfd/elf64-s390.c +++ b/bfd/elf64-s390.c @@ -3692,8 +3692,9 @@ elf_s390_finish_dynamic_sections (bfd *output_bfd, - htab->elf.splt->output_section->vma - 6)/2, htab->elf.splt->contents + 8); } - elf_section_data (htab->elf.splt->output_section) - ->this_hdr.sh_entsize = PLT_ENTRY_SIZE; + if (elf_section_data (htab->elf.splt->output_section) != NULL) + elf_section_data (htab->elf.splt->output_section)->this_hdr.sh_entsize + = PLT_ENTRY_SIZE; } if (htab->elf.sgotplt) |