X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=e42555468d9f8c44a071a5d2997954bd0ae3629b;hp=7bef7a907d876ecfc24bab0169a7ee41cff88b0e;hb=a6a884b368409c0c0af1c1c53f6ad4a1b55648b2;hpb=476db477246a1438f3b2535bf37ab7f9130827c8 diff --git a/cli.c b/cli.c index 7bef7a9..e425554 100644 --- a/cli.c +++ b/cli.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include #include "uci.h" @@ -27,7 +29,6 @@ static enum { CLI_FLAG_NOCOMMIT = (1 << 2), CLI_FLAG_BATCH = (1 << 3), CLI_FLAG_SHOW_EXT = (1 << 4), - CLI_FLAG_NOPLUGINS= (1 << 5), } flags; static FILE *input; @@ -38,6 +39,7 @@ enum { CMD_GET, CMD_SET, CMD_ADD_LIST, + CMD_DEL_LIST, CMD_DEL, CMD_RENAME, CMD_REVERT, @@ -98,6 +100,8 @@ uci_lookup_section_ref(struct uci_section *s) } if (!ti) { ti = malloc(sizeof(struct uci_type_list)); + if (!ti) + return NULL; memset(ti, 0, sizeof(struct uci_type_list)); ti->next = type_list; type_list = ti; @@ -110,8 +114,12 @@ uci_lookup_section_ref(struct uci_section *s) } else { typestr = realloc(typestr, maxlen); } - sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + + if (typestr) + sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + ti->idx++; + return typestr; } @@ -127,10 +135,11 @@ static void uci_usage(void) "\tcommit []\n" "\tadd \n" "\tadd_list .
.