From: Enrico Tassi Date: Tue, 26 Aug 2014 16:20:55 +0200 Subject: Fix stack overflow in vararg functions --- src/ldo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ldo.c b/src/ldo.c index d1bf786..30333bf 100644 --- a/src/ldo.c +++ b/src/ldo.c @@ -274,7 +274,7 @@ int luaD_precall (lua_State *L, StkId func, int nresults) { CallInfo *ci; StkId st, base; Proto *p = cl->p; - luaD_checkstack(L, p->maxstacksize); + luaD_checkstack(L, p->maxstacksize + p->numparams); func = restorestack(L, funcr); base = func + 1; ='hidden' name='id' value='d42f74103543dad9ec68113363859663b19fdbfa'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/uuid.scm
AgeCommit message (Expand)Author
2018-05-19uuid: 'uuid' returns #f when 'string->uuid' returns #f....Ludovic Courtès
2017-10-06uuid: Fix typo in 'uuid=?' test....Ludovic Courtès
2017-10-05uuid: Add 'uuid=?' and use it....Ludovic Courtès
2017-09-22uuid: Add a parser for FAT32 UUIDs....Ludovic Courtès
2017-09-14uuid: Move tests to 'tests/uuid.scm'....Ludovic Courtès