This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bfd/ieee.c bfd_zmalloc -> bfd_zalloc


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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]