summaryrefslogtreecommitdiffstats
path: root/streaming/receiver.c
diff options
context:
space:
mode:
authorStelios Fragkakis <52996999+stelfrag@users.noreply.github.com>2023-06-09 15:15:39 +0300
committerGitHub <noreply@github.com>2023-06-09 15:15:39 +0300
commit4d0f2b5ef322e3da3a0182acb47780f002fbd4cc (patch)
tree195573d3ff38e12a4e0d0cf94125cc42ae6f9956 /streaming/receiver.c
parentf34df65da3fbad346833c924186d2aad5e025248 (diff)
Fix coverity issues (#15169)
* online is true at this point * ignore return value * Check sender existence
Diffstat (limited to 'streaming/receiver.c')
-rw-r--r--streaming/receiver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/receiver.c b/streaming/receiver.c
index a89fdf04a3..709f15bd58 100644
--- a/streaming/receiver.c
+++ b/streaming/receiver.c
@@ -600,7 +600,7 @@ bool stop_streaming_receiver(RRDHOST *host, const char *reason) {
}
static void rrdpush_send_error_on_taken_over_connection(struct receiver_state *rpt, const char *msg) {
- send_timeout(
+ (void) send_timeout(
#ifdef ENABLE_HTTPS
&rpt->ssl,
#endif