projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b11c802
)
wg_send_buffer: return error if fd < 0
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 5 Jun 2016 12:36:36 +0000
(14:36 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 5 Jun 2016 12:36:36 +0000
(14:36 +0200)
CID 116310
src/write_graphite.c
patch
|
blob
|
history
diff --git
a/src/write_graphite.c
b/src/write_graphite.c
index
3dc4df4
..
0f9a8be
100644
(file)
--- a/
src/write_graphite.c
+++ b/
src/write_graphite.c
@@
-137,6
+137,9
@@
static int wg_send_buffer (struct wg_callback *cb)
{
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)
{