From 457bac94ce770682c140c971a4d1ec1638ca59cc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 15 Sep 1995 17:47:53 -0300 Subject: small corrections to avoid uninitialized global variables. --- table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/table.c b/table.c index 7f3bc2c0..be93d833 100644 --- a/table.c +++ b/table.c @@ -3,7 +3,7 @@ ** Module to control static tables */ -char *rcs_table="$Id: table.c,v 2.30 1995/05/16 17:23:58 roberto Exp celes $"; +char *rcs_table="$Id: table.c,v 2.31 1995/05/16 19:23:55 celes Exp roberto $"; #include @@ -19,11 +19,11 @@ char *rcs_table="$Id: table.c,v 2.30 1995/05/16 17:23:58 roberto Exp celes $"; #define BUFFER_BLOCK 256 -Symbol *lua_table; +Symbol *lua_table = NULL; static Word lua_ntable = 0; static Long lua_maxsymbol = 0; -TaggedString **lua_constant; +TaggedString **lua_constant = NULL; static Word lua_nconstant = 0; static Long lua_maxconstant = 0; -- cgit v1.2.3-55-g6feb