X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fconfigfile.c;h=983d99569796fde8b684242663106357e3506d3d;hb=c6da31fb30c2fb1d131f92efcde0b3ec9a010b2c;hp=0b7786f929605a311b4c8705a48e73a80ace68b4;hpb=e04cfcb9d1f1eed00bf11768db6d0540babe2e4e;p=collectd.git diff --git a/src/configfile.c b/src/configfile.c index 0b7786f9..983d9956 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -414,6 +414,12 @@ static int cf_ci_replace_child (oconfig_item_t *dst, oconfig_item_t *src, /* Resize the memory containing the children to be big enough to hold * all children. */ + if (dst->children_num + src->children_num - 1 == 0) + { + dst->children_num = 0; + return (0); + } + temp = (oconfig_item_t *) realloc (dst->children, sizeof (oconfig_item_t) * (dst->children_num + src->children_num - 1)); @@ -514,7 +520,8 @@ static int cf_include_all (oconfig_item_t *root, int depth) continue; /* Now replace the i'th child in `root' with `new'. */ - cf_ci_replace_child (root, new, i); + if (cf_ci_replace_child (root, new, i) < 0) + return (-1); /* ... and go back to the new i'th child. */ --i;