X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_graphite.c;h=0b8ab41c08bf10681c04987fd37c946c2dcb3a4c;hb=db35efb33e81d0a013e09a8a6ffa362ad5962f7c;hp=0702a6ea9e2888b68104dd6315a399d2275f50e8;hpb=7c702e464f9faf954c320ec5b87c4755083d82bd;p=collectd.git diff --git a/src/write_graphite.c b/src/write_graphite.c index 0702a6ea..0b8ab41c 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -141,7 +141,7 @@ static int wg_send_buffer (struct wg_callback *cb) ssize_t status = 0; status = swrite (cb->sock_fd, cb->send_buf, strlen (cb->send_buf)); - if (status < 0) + if (status != 0) { if (cb->log_send_errors) { @@ -180,7 +180,7 @@ static int wg_flush_nolock (cdtime_t timeout, struct wg_callback *cb) return (0); } - if (cb->send_buf_fill <= 0) + if (cb->send_buf_fill == 0) { cb->send_buf_init_time = cdtime (); return (0); @@ -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);