From 10de1cbaf381d28993e64086215310eaf63c2ef9 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 7 Jun 2002 15:04:49 +0000 Subject: Replace bfd_alloc/bfd_malloc + memset with bfd_zalloc/bfd_zmalloc --- bfd/m68klinux.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bfd/m68klinux.c') diff --git a/bfd/m68klinux.c b/bfd/m68klinux.c index 7dd0428947e..863a61d68f8 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; -- cgit v1.2.1