From c1829b37e9cf080dd85809b5a020fb448894dee7 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:57:06 +0200 Subject: [PATCH] Fix issue with invalid usage of field function and non-table.clone usage of `luaH_clone` breaking --- VM/src/ltable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VM/src/ltable.cpp b/VM/src/ltable.cpp index ad2825e2..115292b3 100644 --- a/VM/src/ltable.cpp +++ b/VM/src/ltable.cpp @@ -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); 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->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; if (tt->sizearray)