From 9d49da8cbbd46d528be38ec3ac394a2ce9062093 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 3 Feb 2015 23:10:46 +0100 Subject: updated for version 7.4.618 Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) Solution: Put the return statement back. --- src/if_lua.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/if_lua.c') diff --git a/src/if_lua.c b/src/if_lua.c index 148d624203..b4789c449e 100644 --- a/src/if_lua.c +++ b/src/if_lua.c @@ -1547,6 +1547,7 @@ luaV_setref (lua_State *L) abort = set_ref_in_item(&tv, copyID, NULL, NULL); } lua_pushinteger(L, abort); + return 0; } static int -- cgit v1.2.3