aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-29 15:10:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-03-29 15:10:50 -0300
commit88a50ffa715483e7187c0d7d6caaf708ebacf756 (patch)
treeabd032613bb066ebf4b4d3d2cb2e031347945c0a /ltm.h
parent86a8e74824b3ec7918e3dbeaff222bb1ea1ec22f (diff)
downloadlua-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltm.h b/ltm.h
index 3c49713a..df05b741 100644
--- a/ltm.h
+++ b/ltm.h
@@ -81,8 +81,8 @@ LUAI_FUNC void luaT_init (lua_State *L);
81 81
82LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1, 82LUAI_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);
84LUAI_FUNC void luaT_callTMres (lua_State *L, const TValue *f, 84LUAI_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);
86LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2, 86LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
87 StkId res, TMS event); 87 StkId res, TMS event);
88LUAI_FUNC void luaT_tryconcatTM (lua_State *L); 88LUAI_FUNC void luaT_tryconcatTM (lua_State *L);