X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/bb7c2bc6236c317205e0dc3323633f1d3cee2c49..88636fbd496dd13204395b89ac6d50cf907ff349:/src/closure.c diff --git a/src/closure.c b/src/closure.c index 0b06e99c..f530e6af 100644 --- a/src/closure.c +++ b/src/closure.c @@ -1,6 +1,7 @@ /* Closures for Bison - Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1984, 1989, 2000, 2001, 2002, 2004 Free Software + Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -180,9 +181,9 @@ set_fderives (void) void -new_closure (int n) +new_closure (unsigned int n) { - CALLOC (itemset, n); + itemset = xnmalloc (n, sizeof *itemset); ruleset = bitset_create (nrules, BITSET_FIXED);