From c11849d0d64800b5c371ccfc81d7ae1281ec67ee Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Fri, 5 Feb 2021 20:00:56 +0000 Subject: [PATCH] fix crash bug --- src/client/src/tscSystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscSystem.c b/src/client/src/tscSystem.c index 2b6634fece..d8c986e550 100644 --- a/src/client/src/tscSystem.c +++ b/src/client/src/tscSystem.c @@ -64,7 +64,7 @@ void tscReleaseRpc(void *param) { return; } pthread_mutex_lock(&rpcObjMutex); - taosCacheRelease(tscRpcCache, (void *)¶m, true); + taosCacheRelease(tscRpcCache, (void *)¶m, false); pthread_mutex_unlock(&rpcObjMutex); } -- GitLab