/* get the policy table */
lua_pushinteger(L, 2);
lua_gettable(L, -3);
- plen = lua_gettablelen(L, -1);
/* check if the method table is valid */
if ((lua_type(L, -2) != LUA_TFUNCTION) ||
(lua_type(L, -1) != LUA_TTABLE) ||
- lua_objlen(L, -1) || !plen) {
+ lua_objlen(L, -1)) {
lua_pop(L, 2);
return 1;
}
lua_pushvalue(L, -2);
lua_setfield(L, -6, lua_tostring(L, -5));
+ m->name = lua_tostring(L, -4);
+ m->handler = ubus_method_handler;
+
+ plen = lua_gettablelen(L, -1);
+
+ /* exit if policy table is empty */
+ if (!plen) {
+ lua_pop(L, 2);
+ return 0;
+ }
+
/* setup the policy pointers */
p = malloc(sizeof(struct blobmsg_policy) * plen);
memset(p, 0, sizeof(struct blobmsg_policy) * plen);
}
m->n_policy = pidx;
- m->name = lua_tostring(L, -4);
- m->handler = ubus_method_handler;
lua_pop(L, 2);
return 0;