]> git.saurik.com Git - bison.git/blobdiff - src/state.c
* src/output.c (table_size, table_grow): New.
[bison.git] / src / state.c
index a1e83f383d1ad603dc2cc6f7bb36c6276f1d4a34..dd8c3b6ecc159263e0439db2875c6a0c4caff039 100644 (file)
@@ -1,5 +1,5 @@
 /* Type definitions for nondeterministic finite state machine for bison,
-   Copyright 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002  Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -20,6 +20,7 @@
 
 
 #include "system.h"
+#include "gram.h"
 #include "state.h"
 
 /*---------------------------------.
@@ -61,7 +62,7 @@ errs *
 errs_dup (errs *src)
 {
   errs *res = errs_new (src->nerrs);
-  memcpy (res->errs, src->errs, src->nerrs);
+  memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
   return res;
 }