aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-11-21 13:29:47 +0000
committerNick Clifton <nickc@redhat.com>2013-11-21 13:29:47 +0000
commit8d5c4b7bfdfa5f2b40fa056132823c8e9497dc72 (patch)
tree4b91991635f21ef748d2b3f2d61d4016586be8be /ld
parent630b051036e446754f13d1f07cfd6de0612a90de (diff)
downloadfsf-binutils-gdb-8d5c4b7bfdfa5f2b40fa056132823c8e9497dc72.zip
fsf-binutils-gdb-8d5c4b7bfdfa5f2b40fa056132823c8e9497dc72.tar.gz
fsf-binutils-gdb-8d5c4b7bfdfa5f2b40fa056132823c8e9497dc72.tar.bz2
PR ld/16192
* pe-dll.c (pe_create_runtime_relocator_reference): Zero the newly allocated idata5 block.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/pe-dll.c5
2 files changed, 8 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 681a08b..46b8ac6 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2013-11-21 Nick Clifton <nickc@redhat.com>
+
+ PR ld/16192
+ * pe-dll.c (pe_create_runtime_relocator_reference): Zero the
+ newly allocated idata5 block.
+
2013-11-20 Nick Clifton <nickc@redhat.com>
* scripttempl/elf32msp430.sc (.data): Set the based on the next
diff --git a/ld/pe-dll.c b/ld/pe-dll.c
index bd3195f..7d5f90d 100644
--- a/ld/pe-dll.c
+++ b/ld/pe-dll.c
@@ -1,6 +1,5 @@
/* Routines to help build PEI-format DLLs (Win32 etc)
- Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
- 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+ Copyright 1998-2013 Free Software Foundation, Inc.
Written by DJ Delorie <dj@cygnus.com>
This file is part of the GNU Binutils.
@@ -2591,7 +2590,7 @@ pe_create_runtime_relocator_reference (bfd *parent)
BSF_NO_FLAGS, 0);
bfd_set_section_size (abfd, extern_rt_rel, PE_IDATA5_SIZE);
- extern_rt_rel_d = xmalloc (PE_IDATA5_SIZE);
+ extern_rt_rel_d = xcalloc (1, PE_IDATA5_SIZE);
extern_rt_rel->contents = extern_rt_rel_d;
quick_reloc (abfd, 0, BFD_RELOC_RVA, 1);