bfd/ieee.c bfd_zmalloc -> bfd_zalloc
Alan Modra
alan@linuxcare.com.au
Tue Oct 10 08:46:00 GMT 2000
Found when checking Tom Rix's patch
bfd/ChangeLog
* ieee.c (ieee_make_empty_symbol): Use bfd_zalloc, not bfd_zmalloc.
Alan Modra
--
Linuxcare. Support for the Revolution.
Index: ieee.c
===================================================================
RCS file: /cvs/src/src/bfd/ieee.c,v
retrieving revision 1.10
diff -u -p -r1.10 ieee.c
--- ieee.c 2000/08/07 19:46:11 1.10
+++ ieee.c 2000/10/10 15:34:57
@@ -3725,7 +3725,7 @@ ieee_make_empty_symbol (abfd)
bfd *abfd;
{
ieee_symbol_type *new =
- (ieee_symbol_type *) bfd_zmalloc (sizeof (ieee_symbol_type));
+ (ieee_symbol_type *) bfd_zalloc (sizeof (ieee_symbol_type));
if (!new)
return NULL;
new->symbol.the_bfd = abfd;
More information about the Binutils
mailing list