diff options
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.c,v 2.72 2010/03/24 13:07:01 roberto Exp roberto $ | 2 | ** $Id: lstate.c,v 2.73 2010/03/25 13:06:36 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -254,6 +254,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | |||
254 | g->uvhead.u.l.prev = &g->uvhead; | 254 | g->uvhead.u.l.prev = &g->uvhead; |
255 | g->uvhead.u.l.next = &g->uvhead; | 255 | g->uvhead.u.l.next = &g->uvhead; |
256 | g->GCthreshold = MAX_LUMEM; /* no GC while building state */ | 256 | g->GCthreshold = MAX_LUMEM; /* no GC while building state */ |
257 | g->lastmajormem = 0; | ||
257 | g->strt.size = 0; | 258 | g->strt.size = 0; |
258 | g->strt.nuse = 0; | 259 | g->strt.nuse = 0; |
259 | g->strt.hash = NULL; | 260 | g->strt.hash = NULL; |