fix incomplete lookups for uci.get()
[project/uci.git] / lua / uci.c
index f87ce271adf5982cecc223285defbf5e1e5d8b41..7f4ba992e3cdf6cc3f2d45b1781049fb6e3d2f72 100644 (file)
--- a/lua/uci.c
+++ b/lua/uci.c
@@ -296,6 +296,10 @@ uci_lua_get_any(lua_State *L, bool all)
                err = UCI_ERR_INVAL;
                goto error;
        }
+       if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) {
+               err = UCI_ERR_NOTFOUND;
+               goto error;
+       }
 
        err = UCI_OK;
        e = ptr.last;