Fixed dangling 'StkId' in 'luaV_finishget'

Bug introduced in 05932567.
This commit is contained in:
Roberto Ierusalimschy
2024-03-29 15:10:50 -03:00
parent 86a8e74824
commit 88a50ffa71
5 changed files with 42 additions and 26 deletions

4
ltm.h
View File

@@ -81,8 +81,8 @@ LUAI_FUNC void luaT_init (lua_State *L);
LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
const TValue *p2, const TValue *p3);
LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f,
const TValue *p1, const TValue *p2, StkId p3);
LUAI_FUNC int luaT_callTMres (lua_State *L, const TValue *f,
const TValue *p1, const TValue *p2, StkId p3);
LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
StkId res, TMS event);
LUAI_FUNC void luaT_tryconcatTM (lua_State *L);