fix: heap-use-after-free in syncNodeEqPingTimer

This commit is contained in:
Shengliang Guan 2022-11-15 22:29:59 +08:00
parent 6c0bbe684b
commit aab1ec632c
1 changed files with 3 additions and 3 deletions

View File

@ -1842,7 +1842,7 @@ static void syncNodeEqPingTimer(void* param, void* tmrId) {
return;
}
sTrace(pNode, "enqueue ping msg");
sTrace("enqueue ping msg");
code = pNode->syncEqMsg(pNode->msgcb, &rpcMsg);
if (code != 0) {
sError("failed to sync enqueue ping msg since %s", terrstr());
@ -1870,7 +1870,7 @@ static void syncNodeEqElectTimer(void* param, void* tmrId) {
}
SyncTimeout* pTimeout = rpcMsg.pCont;
sTrace(pNode, "enqueue elect msg lc:%" PRId64, pTimeout->logicClock);
sTrace("enqueue elect msg lc:%" PRId64, pTimeout->logicClock);
code = pNode->syncEqMsg(pNode->msgcb, &rpcMsg);
if (code != 0) {
@ -1894,7 +1894,7 @@ static void syncNodeEqHeartbeatTimer(void* param, void* tmrId) {
return;
}
sTrace(pNode, "enqueue heartbeat timer");
sTrace("enqueue heartbeat timer");
code = pNode->syncEqMsg(pNode->msgcb, &rpcMsg);
if (code != 0) {
sError("failed to enqueue heartbeat msg since %s", terrstr());