summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-11-25 10:11:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-11-25 10:11:05 -0300
commit48835c76c8df62fab4827a9835b351718d20df4b (patch)
tree499d4adb856f159107f668d22ba0c196718de4e8
parent6b3e116d44eed387aa93126c48eae8a64b38bfc2 (diff)
downloadlua-github-48835c76c8df62fab4827a9835b351718d20df4b.tar.gz
Wrong assert in 'collectvalidlines'
-rw-r--r--ldebug.c2
-rw-r--r--testes/db.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index 30a28828..dc5f78c6 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -304,7 +304,7 @@ static void collectvalidlines (lua_State *L, Closure *f) {
if (!p->is_vararg) /* regular function? */
i = 0; /* consider all instructions */
else { /* vararg function */
- lua_assert(p->code[0] == OP_VARARGPREP);
+ lua_assert(GET_OPCODE(p->code[0]) == OP_VARARGPREP);
currentline = nextline(p, currentline, 0);
i = 1; /* skip first instruction (OP_VARARGPREP) */
}
diff --git a/testes/db.lua b/testes/db.lua
index 11dfd26c..e0699724 100644
--- a/testes/db.lua
+++ b/testes/db.lua
@@ -225,7 +225,7 @@ do -- testing active lines
-- 5th line is empty
end, {3, 4, 6})
- checkactivelines(function (...) end, {0})
+ checkactivelines(function (a, b, ...) end, {0})
checkactivelines(function (a, b)
end, {1})