Supply raw argument to luaH_clone

This commit is contained in:
ccuser44 2025-01-02 15:58:47 +02:00 committed by GitHub
parent c1829b37e9
commit ba4b95ac5f
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -585,7 +585,7 @@ static int tisfrozen(lua_State* L)
static int tclone(lua_State* L)
{
luaL_checktype(L, 1, LUA_TTABLE);
Table* tt = luaH_clone(L, hvalue(L->base));
Table* tt = luaH_clone(L, hvalue(L->base), luaL_getmetafield(L, 1, "__metatable") ? true : false);
TValue v;
sethvalue(L, &v, tt);
luaA_pushobject(L, &v);