tells the allocation function that the first block is a thread

This commit is contained in:
Roberto Ierusalimschy 2010-04-19 13:34:46 -03:00
parent 1bb407e494
commit 99a39f6f4a

View File

@ -1,5 +1,5 @@
/*
** $Id: lstate.c,v 2.79 2010/04/12 16:07:06 roberto Exp roberto $
** $Id: lstate.c,v 2.80 2010/04/14 15:14:21 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@ -218,7 +218,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
int i;
lua_State *L;
global_State *g;
LG *l = cast(LG *, (*f)(ud, NULL, 0, sizeof(LG)));
LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
if (l == NULL) return NULL;
L = &l->l.l;
g = &l->g;