fix/remove-sync-heartbeat-lock-fix-check

This commit is contained in:
dmchen 2025-02-26 18:41:17 +08:00
parent bd492f790e
commit 2d93259f1a
1 changed files with 1 additions and 1 deletions

View File

@ -1340,7 +1340,7 @@ void syncLogReplDestroy(SSyncLogReplMgr* pMgr) {
if (pMgr == NULL) { if (pMgr == NULL) {
return; return;
} }
taosThreadMutexDestroy(&pMgr->mutex); (void)taosThreadMutexDestroy(&pMgr->mutex);
taosMemoryFree(pMgr); taosMemoryFree(pMgr);
return; return;
} }