Merge pull request #21055 from taosdata/fix/remove-null-pointer

remove null pointer
This commit is contained in:
Xiaoyu Wang 2023-04-24 17:19:59 +08:00 committed by GitHub
commit 6f5d8150e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2156,7 +2156,7 @@ static void syncNodeEqPeerHeartbeatTimer(void* param, void* tmrId) {
SSyncHbTimerData* pData = syncHbTimerDataAcquire(hbDataRid); SSyncHbTimerData* pData = syncHbTimerDataAcquire(hbDataRid);
if (pData == NULL) { if (pData == NULL) {
sError("hb timer get pData NULL, rid:%" PRId64 " addr:%" PRId64, hbDataRid, pData->destId.addr); sError("hb timer get pData NULL, %" PRId64, hbDataRid);
return; return;
} }