From 722969f047c0334d4753be6087bfd71ba39a34ce Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Fri, 1 Apr 2016 18:35:21 +0200 Subject: [PATCH] write_graphite plugin: malloc + memset -> calloc --- src/write_graphite.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); -- 2.11.0