summaryrefslogtreecommitdiffstats
path: root/bfd/m68klinux.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-06-07 15:04:49 +0000
committerAlan Modra <amodra@gmail.com>2002-06-07 15:04:49 +0000
commit9bab7074b06e5c0661db3ec95c584ff221fc61ec (patch)
treee018b581bbf2801ccb49cdcef5de6066b63c2a21 /bfd/m68klinux.c
parent9758f3fc77f7b9748293b7e265d362ceaddfdfb4 (diff)
downloadppe42-binutils-9bab7074b06e5c0661db3ec95c584ff221fc61ec.tar.gz
ppe42-binutils-9bab7074b06e5c0661db3ec95c584ff221fc61ec.zip
Replace bfd_alloc/bfd_malloc + memset with bfd_zalloc/bfd_zmalloc
Diffstat (limited to 'bfd/m68klinux.c')
-rw-r--r--bfd/m68klinux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/m68klinux.c b/bfd/m68klinux.c
index 7dd0428947..863a61d68f 100644
--- a/bfd/m68klinux.c
+++ b/bfd/m68klinux.c
@@ -601,13 +601,12 @@ bfd_m68klinux_size_dynamic_sections (output_bfd, info)
{
s->_raw_size = linux_hash_table (info)->fixup_count + 1;
s->_raw_size *= 8;
- s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
+ s->contents = (bfd_byte *) bfd_zalloc (output_bfd, s->_raw_size);
if (s->contents == NULL)
{
bfd_set_error (bfd_error_no_memory);
return false;
}
- memset (s->contents, 0, (size_t) s->_raw_size);
}
return true;
OpenPOWER on IntegriCloud