* elf32-arm.c (arm_allocate_glue_section_space): Clear section
contents.
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".
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;