aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2019-05-22 18:29:20 +0930
committerAlan Modra <amodra@gmail.com>2019-05-22 18:33:39 +0930
commitb0f4fbf81a1cf67d49558b2e8890e5c8628f8403 (patch)
tree13397874fb14dfc75419551f77d0e0f47776f362 /bfd
parent9ec2f606ce9ebfe9b7d1c6d3db0614d19bd03a6b (diff)
downloadfsf-binutils-gdb-b0f4fbf81a1cf67d49558b2e8890e5c8628f8403.zip
fsf-binutils-gdb-b0f4fbf81a1cf67d49558b2e8890e5c8628f8403.tar.gz
fsf-binutils-gdb-b0f4fbf81a1cf67d49558b2e8890e5c8628f8403.tar.bz2
ARM STM32L4XX erratum test failure with MALLOC_PERTURB_
* elf32-arm.c (arm_allocate_glue_section_space): Clear section contents.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf32-arm.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 4f523fa..f2b2ec5 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,10 @@
2019-05-22 Alan Modra <amodra@gmail.com>
+ * elf32-arm.c (arm_allocate_glue_section_space): Clear section
+ contents.
+
+2019-05-22 Alan Modra <amodra@gmail.com>
+
* vms-alpha.c (_bfd_vms_write_etir): Don't attempt further
processing on "size error in section".
diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c
index 7f08526..d35d609 100644
--- a/bfd/elf32-arm.c
+++ b/bfd/elf32-arm.c
@@ -7222,7 +7222,7 @@ arm_allocate_glue_section_space (bfd * abfd, bfd_size_type size, const char * na
s = bfd_get_linker_section (abfd, name);
BFD_ASSERT (s != NULL);
- contents = (bfd_byte *) bfd_alloc (abfd, size);
+ contents = (bfd_byte *) bfd_zalloc (abfd, size);
BFD_ASSERT (s->size == size);
s->contents = contents;