From 2f1afb9bf0fce767b4b13e8cef55c01d019f8b16 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Tue, 6 Dec 2022 15:30:08 +0800 Subject: [PATCH] fix(query):fix typo --- source/client/src/clientEnv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/clientEnv.c b/source/client/src/clientEnv.c index d27757119a..7564d91330 100644 --- a/source/client/src/clientEnv.c +++ b/source/client/src/clientEnv.c @@ -231,7 +231,7 @@ void destroyTscObj(void *pObj) { tscDebug("connObj 0x%" PRIx64 " p:%p destroyed, remain inst totalConn:%" PRId64, pTscObj->id, pTscObj, pTscObj->pAppInfo->numOfConns); - // In any cases, we should not free app inst here. Or an race condition rise. + // In any cases, we should not free app inst here. Or an race condition rises. /*int64_t connNum = */atomic_sub_fetch_64(&pTscObj->pAppInfo->numOfConns, 1); taosThreadMutexDestroy(&pTscObj->mutex); -- GitLab