fix invocation of uci.commit(), uci.save() without arguments
authorFelix Fietkau <nbd@openwrt.org>
Mon, 26 May 2008 13:53:07 +0000 (15:53 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 26 May 2008 13:53:07 +0000 (15:53 +0200)
lua/uci.c

index ca6f1ad..988c9b9 100644 (file)
--- 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");