X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=ucimap.c;h=e9423331257f3ed1e88743009b82e833f996b947;hp=cb86a4f34f61219645204e069245f666bfd8735a;hb=1afdbf8f22ab7f8c9cf4d52d897e3b0de1e099e3;hpb=f107b5a34f5f20ff373683472cfa5978da640132 diff --git a/ucimap.c b/ucimap.c index cb86a4f..e942333 100644 --- a/ucimap.c +++ b/ucimap.c @@ -426,6 +426,9 @@ ucimap_store_section(struct uci_map *map, struct uci_package *p, void *section) static char buf[32]; const char *str = NULL; + if (ucimap_is_list(om->type)) + continue; + data = ucimap_get_data(sd, om); if (!TEST_BIT(sd->cmap, i)) continue; @@ -443,6 +446,8 @@ ucimap_store_section(struct uci_map *map, struct uci_package *p, void *section) sprintf(buf, "%d", !!data->b); str = buf; break; + default: + continue; } ptr.value = str;