X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=a5b77a8fa1003ee75f19520cc83311730d8935b1;hp=36ef6e5d1cbbedbd3baa07d8a11f4dbd7dd27db2;hb=51f2ea3271762cebf1e3b54a6e87297f2cab0194;hpb=c79cc497e7b0caa0f9f6a2c978fa9a5f0f097463 diff --git a/cli.c b/cli.c index 36ef6e5..a5b77a8 100644 --- a/cli.c +++ b/cli.c @@ -37,9 +37,11 @@ enum { CMD_GET, CMD_SET, CMD_ADD_LIST, + CMD_DEL_LIST, CMD_DEL, CMD_RENAME, CMD_REVERT, + CMD_REORDER, /* package cmds */ CMD_SHOW, CMD_CHANGES, @@ -96,6 +98,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; @@ -108,8 +112,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; } @@ -125,12 +133,14 @@ static void uci_usage(void) "\tcommit []\n" "\tadd \n" "\tadd_list .
.