Small corrections when setting 'L->top'

- OP_NEWTABLE can use 'ra + 1' to set top (instead of ci->top);
- OP_CLOSE doesn't need to set top ('Protect' already does that);
- OP_TFORCALL must use 'ProtectNT', to preserve the top already set.
  (That was a small bug, because iterators could be called with
   extra parameters besides the state and the control variable.)
- Comments and an extra test for the bug in previous item.
This commit is contained in:
Roberto Ierusalimschy
2019-07-25 13:55:29 -03:00
parent 0eb6aa4013
commit 9a37dc0ce6
4 changed files with 17 additions and 6 deletions

View File

@@ -671,7 +671,8 @@ collectgarbage()
local function f (n, p)
local t = {}; for i=1,p do t[i] = i*10 end
return function (_,n)
return function (_, n, ...)
assert(select("#", ...) == 0) -- no extra arguments
if n > 0 then
n = n-1
return n, table.unpack(t)