Fix size of userdata metatable array (#1366)

Fix udatamt array to use the correct limit for tagged userdata.
This commit is contained in:
Petri Häkkinen 2024-08-14 16:00:21 +03:00 committed by GitHub
parent bfad1fa777
commit 9dc299ecaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -217,7 +217,7 @@ typedef struct global_State
lua_ExecutionCallbacks ecb;
void (*udatagc[LUA_UTAG_LIMIT])(lua_State*, void*); // for each userdata tag, a gc callback to be called immediately before freeing memory
Table* udatamt[LUA_LUTAG_LIMIT]; // metatables for tagged userdata
Table* udatamt[LUA_UTAG_LIMIT]; // metatables for tagged userdata
TString* lightuserdataname[LUA_LUTAG_LIMIT]; // names for tagged lightuserdata