]> pilppa.org Git - uci.git/commitdiff
fix uci_parse_tuple
authorFelix Fietkau <nbd@openwrt.org>
Tue, 5 Feb 2008 20:25:00 +0000 (21:25 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Tue, 5 Feb 2008 20:25:00 +0000 (21:25 +0100)
util.c

diff --git a/util.c b/util.c
index bc137c31788af588c0772b41a5a5a928ebe46764..1d71335f7384d4e2149013686143048784784916 100644 (file)
--- a/util.c
+++ b/util.c
@@ -97,30 +97,29 @@ int uci_parse_tuple(struct uci_context *ctx, char *str, char **package, char **s
        UCI_HANDLE_ERR(ctx);
        UCI_ASSERT(ctx, str && package && section && option);
 
+       last = strchr(str, '=');
+       if (last) {
+               *last = 0;
+               last++;
+       }
+
        *package = strtok(str, ".");
        if (!*package || !uci_validate_name(*package))
                goto error;
 
-       last = *package;
        *section = strtok(NULL, ".");
        if (!*section)
                goto lastval;
 
-       last = *section;
        *option = strtok(NULL, ".");
        if (!*option)
                goto lastval;
 
-       last = *option;
-
 lastval:
-       last = strchr(last, '=');
        if (last) {
                if (!value)
                        goto error;
 
-               *last = 0;
-               last++;
                if (!*last)
                        goto error;
                *value = last;