From 7e84d868d9bc93b66743856d450b75d08716fabf Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 9 Dec 2020 23:10:02 +0800 Subject: [PATCH] [TD-225] fix compiler error. --- src/util/src/tworker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/src/tworker.c b/src/util/src/tworker.c index 46d02273f3..a45e73d4c6 100644 --- a/src/util/src/tworker.c +++ b/src/util/src/tworker.c @@ -36,14 +36,14 @@ int32_t tWorkerInit(SWorkerPool *pPool) { void tWorkerCleanup(SWorkerPool *pPool) { for (int i = 0; i < pPool->max; ++i) { SWorker *pWorker = pPool->worker + i; - if (pWorker->thread) { + if (pWorker->thread != 0) { taosQsetThreadResume(pPool->qset); } } for (int i = 0; i < pPool->max; ++i) { SWorker *pWorker = pPool->worker + i; - if (pWorker->thread) { + if (pWorker->thread != 0) { pthread_join(pWorker->thread, NULL); } } -- GitLab