From: Felix Fietkau Date: Sat, 23 Aug 2008 09:10:41 +0000 (+0200) Subject: add some missing initializations X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=commitdiff_plain;h=600ce9acc5efadd699243f889462b982b83052f2 add some missing initializations --- diff --git a/lua/uci.c b/lua/uci.c index 6e86e9a..b64c91f 100644 --- a/lua/uci.c +++ b/lua/uci.c @@ -105,7 +105,7 @@ done: static int lookup_args(lua_State *L, struct uci_ptr *ptr, char **buf) { - char *s; + char *s = NULL; int n; n = lua_gettop(L); @@ -281,7 +281,7 @@ uci_lua_get_any(lua_State *L, bool all) { struct uci_element *e = NULL; struct uci_ptr ptr; - char *s; + char *s = NULL; int err = UCI_ERR_NOTFOUND; if (lookup_args(L, &ptr, &s))