From 29394ec81ff0a7baafdd940bb70b00e7da6b0421 Mon Sep 17 00:00:00 2001 From: Shengliang Guan Date: Thu, 21 Jan 2021 11:33:36 +0800 Subject: [PATCH] TD-2805 --- src/plugins/http/src/httpServer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/http/src/httpServer.c b/src/plugins/http/src/httpServer.c index 2bb33ed777..bc768788d8 100644 --- a/src/plugins/http/src/httpServer.c +++ b/src/plugins/http/src/httpServer.c @@ -60,7 +60,7 @@ void httpCleanUpConnect() { HttpServer *pServer = &tsHttpServer; if (pServer->pThreads == NULL) return; - if (taosCheckPthreadValid(pServer->thread) { + if (taosCheckPthreadValid(pServer->thread)) { pthread_join(pServer->thread, NULL); } -- GitLab