Skip to content

Commit 174122a

Browse files
brammooldouglasdrumond
authored andcommitted
updated for version 7.4.618
Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) Solution: Put the return statement back.
1 parent c03a483 commit 174122a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/if_lua.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,7 @@ luaV_setref (lua_State *L)
15471547
abort = set_ref_in_item(&tv, copyID, NULL, NULL);
15481548
}
15491549
lua_pushinteger(L, abort);
1550+
return 0;
15501551
}
15511552

15521553
static int

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
618,
744746
/**/
745747
617,
746748
/**/

0 commit comments

Comments
 (0)