X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ffilecount.c;h=3b5038cde2390f036734c87cccab87f2b186146b;hb=72f3b390dff512e8d891aff6f3fba9ecaeaf970c;hp=47caf93f264af693e0e011634abbf62345b62908;hpb=061c3c091d725d58dfe1e7525a8d72a1ea389a8a;p=collectd.git diff --git a/src/filecount.c b/src/filecount.c index 47caf93f..3b5038cd 100644 --- a/src/filecount.c +++ b/src/filecount.c @@ -344,18 +344,18 @@ static int fc_config_add_dir (oconfig_item_t *ci) } /* Initialize `dir' */ - dir = (fc_directory_conf_t *) malloc (sizeof (*dir)); + dir = calloc (1, sizeof (*dir)); if (dir == NULL) { - ERROR ("filecount plugin: malloc failed."); + ERROR ("filecount plugin: calloc failed."); return (-1); } - memset (dir, 0, sizeof (*dir)); dir->path = strdup (ci->values[0].value.string); if (dir->path == NULL) { ERROR ("filecount plugin: strdup failed."); + sfree (dir); return (-1); }