From f9ea851f333ba325703d7e6e0da0a66f0ecd8163 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Sun, 30 Jul 2017 20:43:46 +0200 Subject: Don't pthread_join unless we actually created a thread. coverity: 1449504 --- radsecproxy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'radsecproxy.c') diff --git a/radsecproxy.c b/radsecproxy.c index 3a9c706..ccedc0d 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1915,7 +1915,8 @@ void *clientwr(void *arg) { for (i = 0; i < MAX_REQUESTS; i++) { if (server->clientrdgone) { - pthread_join(clientrdth, NULL); + if (conf->pdef->connecter) + pthread_join(clientrdth, NULL); goto errexit; } -- cgit v1.1