From: Felix Fietkau Date: Fri, 21 Oct 2011 20:48:01 +0000 (+0200) Subject: fix segfault on import of anonymous sections X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=9d7dd3759086893a4c0315c22f11964c04e14af8;hp=11b494045cff856fee2acf109bcbe79e919e3aaa;p=project%2Fuci.git fix segfault on import of anonymous sections --- diff --git a/file.c b/file.c index 4eb35b1..3cd0133 100644 --- a/file.c +++ b/file.c @@ -398,7 +398,7 @@ static void uci_parse_config(struct uci_context *ctx, char **str) name = next_arg(ctx, str, false, true); assert_eol(ctx, str); - if (!name) { + if (!name || !name[0]) { ctx->internal = !pctx->merge; UCI_NESTED(uci_add_section, ctx, pctx->package, type, &pctx->section); } else {