mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Fix issue with invalid usage of field function and non-table.clone usage of luaH_clone
breaking
This commit is contained in:
parent
7446be330e
commit
c1829b37e9
1 changed files with 2 additions and 2 deletions
|
@ -793,7 +793,7 @@ int luaH_getn(Table* t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Table* luaH_clone(lua_State* L, Table* tt)
|
Table* luaH_clone(lua_State* L, Table* tt, bool raw)
|
||||||
{
|
{
|
||||||
Table* t = luaM_newgco(L, Table, sizeof(Table), L->activememcat);
|
Table* t = luaM_newgco(L, Table, sizeof(Table), L->activememcat);
|
||||||
luaC_init(L, t, LUA_TTABLE);
|
luaC_init(L, t, LUA_TTABLE);
|
||||||
|
@ -807,7 +807,7 @@ Table* luaH_clone(lua_State* L, Table* tt)
|
||||||
t->node = cast_to(LuaNode*, dummynode);
|
t->node = cast_to(LuaNode*, dummynode);
|
||||||
t->lastfree = 0;
|
t->lastfree = 0;
|
||||||
|
|
||||||
if (!luaL_getmetafield(L, 1, "__metatable")) // Prevent unauthorized assigning of locked metatables
|
if (raw) // Prevent unauthorized assigning of locked metatables
|
||||||
t->metatable = tt->metatable;
|
t->metatable = tt->metatable;
|
||||||
|
|
||||||
if (tt->sizearray)
|
if (tt->sizearray)
|
||||||
|
|
Loading…
Add table
Reference in a new issue