* objc/objc-act.c (hash_init): Use xcalloc.
authorStan Shebs <shebs@apple.com>
Fri, 22 Jun 2001 02:38:22 +0000 (02:38 +0000)
committerStan Shebs <shebs@gcc.gnu.org>
Fri, 22 Jun 2001 02:38:22 +0000 (02:38 +0000)
From-SVN: r43498

gcc/ChangeLog
gcc/objc/objc-act.c

index 45495d61752bae0d1a00f9b7f5a6412449058fc0..57da6117b74fc06d7181aec0e16d31c6cff7302f 100644 (file)
@@ -1,3 +1,7 @@
+2001-06-21  Stan Shebs  <shebs@apple.com>
+
+       * objc/objc-act.c (hash_init): Use xcalloc.
+
 2001-06-21  Richard Henderson  <rth@redhat.com>
 
        * flow.c (entry_exit_blocks): Initialize frequency.
index 076637e588f96101c14479d617afa135d9476063..af9a8bb858dec099f94f3caeb4dbee8e73f08120 100644 (file)
@@ -5447,11 +5447,8 @@ build_ivar_reference (id)
 static void
 hash_init ()
 {
-  nst_method_hash_list = (hash *) xmalloc (SIZEHASHTABLE * sizeof (hash));
-  cls_method_hash_list = (hash *) xmalloc (SIZEHASHTABLE * sizeof (hash));
-
-  memset (nst_method_hash_list, 0, SIZEHASHTABLE * sizeof (hash));
-  memset (cls_method_hash_list, 0, SIZEHASHTABLE * sizeof (hash));
+  nst_method_hash_list = (hash *) xcalloc (SIZEHASHTABLE, sizeof (hash));
+  cls_method_hash_list = (hash *) xcalloc (SIZEHASHTABLE, sizeof (hash));
 }
 
 /* WARNING!!!!  hash_enter is called with a method, and will peek