fix crash bug

This commit is contained in:
yihaoDeng 2021-02-05 20:00:56 +00:00
parent 1fba96a651
commit c11849d0d6
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ void tscReleaseRpc(void *param) {
return; return;
} }
pthread_mutex_lock(&rpcObjMutex); pthread_mutex_lock(&rpcObjMutex);
taosCacheRelease(tscRpcCache, (void *)&param, true); taosCacheRelease(tscRpcCache, (void *)&param, false);
pthread_mutex_unlock(&rpcObjMutex); pthread_mutex_unlock(&rpcObjMutex);
} }