X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_graphite.c;h=64794bec964a7823bf5f9028516a1848573e846a;hb=667893e9be8a3a3f608d4b8550be9170732a0747;hp=0b8ab41c08bf10681c04987fd37c946c2dcb3a4c;hpb=01e2d29ebc5dec07daab935da3fcee5bb9c7d620;p=collectd.git diff --git a/src/write_graphite.c b/src/write_graphite.c index 0b8ab41c..64794bec 100644 --- a/src/write_graphite.c +++ b/src/write_graphite.c @@ -47,13 +47,9 @@ #include "plugin.h" #include "configfile.h" -#include "utils_cache.h" #include "utils_complain.h" #include "utils_format_graphite.h" -/* Folks without pthread will need to disable this plugin. */ -#include - #include #define WG_DEFAULT_NODE "localhost" @@ -138,7 +134,10 @@ static void wg_reset_buffer (struct wg_callback *cb) static int wg_send_buffer (struct wg_callback *cb) { - ssize_t status = 0; + ssize_t status; + + if (cb->sock_fd < 0) + return (-1); status = swrite (cb->sock_fd, cb->send_buf, strlen (cb->send_buf)); if (status != 0)