mirror of https://github.com/rusefi/lua.git
table.pack was locking last result, avoiding its collection
This commit is contained in:
parent
b678f246a4
commit
193ce46970
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: ltablib.c,v 1.52 2009/12/18 16:53:12 roberto Exp roberto $
|
** $Id: ltablib.c,v 1.53 2009/12/28 16:30:31 roberto Exp roberto $
|
||||||
** Library for Table Manipulation
|
** Library for Table Manipulation
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -178,6 +178,8 @@ static int pack (lua_State *L) {
|
||||||
for (; top >= 1; top--) /* assign elements */
|
for (; top >= 1; top--) /* assign elements */
|
||||||
lua_rawseti(L, LUA_ENVIRONINDEX, top);
|
lua_rawseti(L, LUA_ENVIRONINDEX, top);
|
||||||
lua_pushvalue(L, LUA_ENVIRONINDEX); /* return new table */
|
lua_pushvalue(L, LUA_ENVIRONINDEX); /* return new table */
|
||||||
|
/* remove new table from environment to allow its later collection */
|
||||||
|
lua_copy(L, LUA_REGISTRYINDEX, LUA_ENVIRONINDEX);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue