]> git.saurik.com Git - bison.git/blobdiff - src/symlist.c
(<<EOF>>): Don't close standard output.
[bison.git] / src / symlist.c
index 5b25ac5689d86824fc7c587a117f3cfedf6c3ee3..c7510c4397f4c5996e8d27d232d7aea4226c5a90 100644 (file)
@@ -32,7 +32,7 @@
 symbol_list *
 symbol_list_new (symbol *sym, location loc)
 {
-  symbol_list *res = MALLOC (res, 1);
+  symbol_list *res = xmalloc (sizeof *res);
   res->next = NULL;
   res->sym = sym;
   res->location = loc;