From: Alan Modra Date: Mon, 16 Jun 2014 00:42:12 +0000 (+0930) Subject: Fix uninitialised VAX .got and .got.plt section X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=eb9a5ecfacc42b9b741a3f83f433252b3c7cd77e;p=deliverable%2Fbinutils-gdb.git Fix uninitialised VAX .got and .got.plt section Cures these failures with MALLOC_PERTURB_=1 FAIL: GOT test (executable) FAIL: GOT test (shared library) FAIL: VAX export class call relocation test FAIL: VAX export class data relocation test * elf32-vax.c (elf_vax_size_dynamic_sections): Clear linker created sections. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a0402ada9f..d08bf24231 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2014-06-16 Alan Modra + + * elf32-vax.c (elf_vax_size_dynamic_sections): Clear linker + created sections. + 2014-06-13 Omair Javaid * elfxx-aarch64.c (stdarg.h): Include. diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c index c28cacadda..1f41867242 100644 --- a/bfd/elf32-vax.c +++ b/bfd/elf32-vax.c @@ -1221,7 +1221,7 @@ elf_vax_size_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info) continue; /* Allocate memory for the section contents. */ - s->contents = (bfd_byte *) bfd_alloc (dynobj, s->size); + s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size); if (s->contents == NULL) return FALSE; }