projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86c6d27
)
ping plugin: Protect access to ping_thread_error.
author
Florian Forster
<octo@collectd.org>
Tue, 8 Dec 2015 13:38:05 +0000
(14:38 +0100)
committer
Florian Forster
<octo@collectd.org>
Tue, 8 Dec 2015 13:38:05 +0000
(14:38 +0100)
This is primarily to make Coverity happy.
CID: 37976
src/ping.c
patch
|
blob
|
history
diff --git
a/src/ping.c
b/src/ping.c
index
e1a3109
..
ecbbd9d
100644
(file)
--- a/
src/ping.c
+++ b/
src/ping.c
@@
-416,8
+416,10
@@
static int stop_thread (void) /* {{{ */
status = -1;
}
+ pthread_mutex_lock (&ping_lock);
memset (&ping_thread_id, 0, sizeof (ping_thread_id));
ping_thread_error = 0;
+ pthread_mutex_unlock (&ping_lock);
return (status);
} /* }}} int stop_thread */