Skip to content

Commit 932ebfa

Browse files
committed
lua bugfix
1 parent 9d74307 commit 932ebfa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

3rd/lua/ldebug.c

+1
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ l_noret luaG_runerror (lua_State *L, const char *fmt, ...) {
653653
CallInfo *ci = L->ci;
654654
const char *msg;
655655
va_list argp;
656+
luaC_checkGC(L); /* error message uses memory */
656657
va_start(argp, fmt);
657658
msg = luaO_pushvfstring(L, fmt, argp); /* format message */
658659
va_end(argp);

3rd/lua/lparser.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ static void test_then_block (LexState *ls, int *escapelist) {
13951395
luaK_goiffalse(ls->fs, &v); /* will jump to label if condition is true */
13961396
enterblock(fs, &bl, 0); /* must enter block before 'goto' */
13971397
gotostat(ls, v.t); /* handle goto/break */
1398-
while (testnext(ls, ';')) {} /* skip colons */
1398+
while (testnext(ls, ';')) {} /* skip semicolons */
13991399
if (block_follow(ls, 0)) { /* 'goto' is the entire block? */
14001400
leaveblock(fs);
14011401
return; /* and that is it */

0 commit comments

Comments
 (0)