X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/8818b7fca12456e62410ef914a7bef250a0633c9..39d4aa6b1c612305bf06760529e2a1532b9818a5:/lib/configuration.c diff --git a/lib/configuration.c b/lib/configuration.c index 221be9c..d758751 100644 --- a/lib/configuration.c +++ b/lib/configuration.c @@ -226,6 +226,10 @@ static int set_stringlist_accum(const struct config_state *cs, struct stringlistlist *sll; sll = ADDRESS(cs->config, struct stringlistlist); + if(nvec == 0) { + sll->n = 0; + return 0; + } sll->n++; sll->s = xrealloc(sll->s, (sll->n * sizeof (struct stringlist))); s = &sll->s[sll->n - 1]; @@ -243,6 +247,10 @@ static int set_string_accum(const struct config_state *cs, struct stringlist *sl; sl = ADDRESS(cs->config, struct stringlist); + if(nvec == 0) { + sl->n = 0; + return 0; + } for(n = 0; n < nvec; ++n) { sl->n++; sl->s = xrealloc(sl->s, (sl->n * sizeof (char *)));