diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-03-29 15:10:50 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-03-29 15:10:50 -0300 |
commit | 88a50ffa715483e7187c0d7d6caaf708ebacf756 (patch) | |
tree | abd032613bb066ebf4b4d3d2cb2e031347945c0a /ltm.h | |
parent | 86a8e74824b3ec7918e3dbeaff222bb1ea1ec22f (diff) | |
download | lua-88a50ffa715483e7187c0d7d6caaf708ebacf756.tar.gz lua-88a50ffa715483e7187c0d7d6caaf708ebacf756.tar.bz2 lua-88a50ffa715483e7187c0d7d6caaf708ebacf756.zip |
Fixed dangling 'StkId' in 'luaV_finishget'
Bug introduced in 05932567.
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -81,8 +81,8 @@ LUAI_FUNC void luaT_init (lua_State *L); | |||
81 | 81 | ||
82 | LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, | 82 | LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, |
83 | const TValue *p2, const TValue *p3); | 83 | const TValue *p2, const TValue *p3); |
84 | LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f, | 84 | LUAI_FUNC int luaT_callTMres (lua_State *L, const TValue *f, |
85 | const TValue *p1, const TValue *p2, StkId p3); | 85 | const TValue *p1, const TValue *p2, StkId p3); |
86 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, | 86 | LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, |
87 | StkId res, TMS event); | 87 | StkId res, TMS event); |
88 | LUAI_FUNC void luaT_tryconcatTM (lua_State *L); | 88 | LUAI_FUNC void luaT_tryconcatTM (lua_State *L); |