From acb84e532506055e38be11ed000eb0e27d4aeb01 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(-) diff --git a/radsecproxy.c b/radsecproxy.c index a52f6aa..9289354 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1834,7 +1834,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