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 /lobject.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 'lobject.h')
-rw-r--r-- | lobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |