fix a few bugs found during code review
authorFelix Fietkau <nbd@openwrt.org>
Sun, 3 Feb 2008 06:37:20 +0000 (07:37 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 3 Feb 2008 06:37:20 +0000 (07:37 +0100)
history.c
libuci.c
list.c

index 052636158ada9cf8d7921553cabab5b2bdef7178..dcf94e02000623c77d1649b5068487e339e6569b 100644 (file)
--- a/history.c
+++ b/history.c
@@ -82,7 +82,7 @@ static void uci_parse_history_line(struct uci_context *ctx, struct uci_package *
                goto error;
        if (option && !uci_validate_name(option))
                goto error;
-       if ((rename || !delete) && !uci_validate_name(value))
+       if ((rename || (!option && !delete)) && !uci_validate_name(value))
                goto error;
 
        if (rename)
index fd8f30c26aec2375d1e5bcc720e473c54d4070e8..66e6d23860fd57559d1f3606803fa512c36ba6ce 100644 (file)
--- a/libuci.c
+++ b/libuci.c
@@ -71,6 +71,7 @@ void uci_free_context(struct uci_context *ctx)
                free(ctx->savedir);
 
        UCI_TRAP_SAVE(ctx, ignore);
+       ctx->internal = true;
        uci_cleanup(ctx);
        uci_foreach_element_safe(&ctx->root, tmp, e) {
                struct uci_package *p = uci_to_package(e);
diff --git a/list.c b/list.c
index 502f51f216cd3debaa9e83eb1a8969af71247491..a0d50d1d3c08224ace9d370a6c5f648d324c2da6 100644 (file)
--- a/list.c
+++ b/list.c
@@ -163,7 +163,7 @@ uci_add_history(struct uci_context *ctx, struct uci_package *p, int cmd, char *s
                return;
 
        if (value)
-               size += strlen(section) + 1;
+               size += strlen(value) + 1;
 
        h = uci_alloc_element(ctx, history, option, size);
        ptr = uci_dataptr(h);
@@ -446,7 +446,7 @@ int uci_set(struct uci_context *ctx, struct uci_package *p, char *section, char
                goto notfound;
 
        s = uci_to_section(e);
-       if (ctx->pctx)
+       if (ctx->pctx && ctx->pctx->merge)
                ctx->pctx->section = s;
 
        if (option) {
@@ -485,7 +485,7 @@ notfound:
                uci_alloc_option(s, option, value);
        else {
                s = uci_alloc_section(p, value, section);
-               if (ctx->pctx)
+               if (ctx->pctx && ctx->pctx->merge)
                        ctx->pctx->section = s;
        }