Merge pull request #21055 from taosdata/fix/remove-null-pointer
remove null pointer
This commit is contained in:
commit
6f5d8150e1
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue