From e137b2f3a43289d30c7c8ffcdc6e9602adc719f4 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 26 May 2008 15:53:07 +0200 Subject: [PATCH] fix invocation of uci.commit(), uci.save() without arguments --- lua/uci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/uci.c b/lua/uci.c index ca6f1ad..988c9b9 100644 --- a/lua/uci.c +++ b/lua/uci.c @@ -392,6 +392,8 @@ uci_lua_package_cmd(lua_State *L, enum pkg_cmd cmd) s = lua_tostring(L, -1); lua_pop(L, 1); break; + case 0: + break; default: err: luaL_error(L, "Invalid argument count"); -- 2.11.0