aboutsummaryrefslogtreecommitdiff
path: root/lobject.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 /lobject.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 'lobject.h')
-rw-r--r--lobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lobject.h b/lobject.h
index b42539cf..169512f8 100644
--- a/lobject.h
+++ b/lobject.h
@@ -256,6 +256,8 @@ typedef union {
256 256
257 257
258#define l_isfalse(o) (ttisfalse(o) || ttisnil(o)) 258#define l_isfalse(o) (ttisfalse(o) || ttisnil(o))
259#define tagisfalse(t) ((t) == LUA_VFALSE || novariant(t) == LUA_TNIL)
260
259 261
260 262
261#define setbfvalue(obj) settt_(obj, LUA_VFALSE) 263#define setbfvalue(obj) settt_(obj, LUA_VFALSE)