CVSROOT: /sources/m4
Module name: m4
Branch: branch-1_4
Changes by: Eric Blake <ericb> 06/10/26 04:55:20
Index: src/symtab.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/symtab.c,v
retrieving revision 1.1.1.1.2.13
retrieving revision 1.1.1.1.2.14
diff -u -b -r1.1.1.1.2.13 -r1.1.1.1.2.14
--- src/symtab.c 30 Jul 2006 23:46:51 -0000 1.1.1.1.2.13
+++ src/symtab.c 26 Oct 2006 04:55:20 -0000 1.1.1.1.2.14
@@ -101,7 +101,7 @@
size_t i;
symbol **s;
- s = symtab = (symbol **) xmalloc (hash_table_size * sizeof (symbol *));
+ s = symtab = (symbol **) xnmalloc (hash_table_size, sizeof (symbol *));
for (i = 0; i < hash_table_size; i++)
s[i] = NULL;