Replace bfd_alloc/bfd_malloc + memset with bfd_zalloc/bfd_zmalloc

This commit is contained in:
Alan Modra
2002-06-07 15:04:49 +00:00
parent 9758f3fc77
commit 9bab7074b0
22 changed files with 94 additions and 105 deletions

View File

@ -599,10 +599,9 @@ bfd_sparclinux_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)
return false;
memset (s->contents, 0, (size_t) s->_raw_size);
}
return true;