X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_graphite.c;h=0fa8bc326a742d2a26c1249d7f5de8bebe2ecbe5;hb=50345eec33951b964e2829e83c30399b71f2baba;hp=6baace14410e48f72761d21d6d2db1c9fdb854ad;hpb=4bca6c6b7e03ab4aa0d6a8a59dda3e44608f63f1;p=collectd.git diff --git a/src/write_graphite.c b/src/write_graphite.c index 6baace14..0fa8bc32 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -486,13 +486,12 @@ static int wg_config_node (oconfig_item_t *ci) int i; int status = 0; - cb = malloc (sizeof (*cb)); + cb = calloc (1, sizeof (*cb)); if (cb == NULL) { - ERROR ("write_graphite plugin: malloc failed."); + ERROR ("write_graphite plugin: calloc failed."); return (-1); } - memset (cb, 0, sizeof (*cb)); cb->sock_fd = -1; cb->name = NULL; cb->node = strdup (WG_DEFAULT_NODE);