Skip to content

Commit

Permalink
fix build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp committed Jun 29, 2023
1 parent 820b8a4 commit cf2eb88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/protocols/secure_channel/CASESession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2214,17 +2214,17 @@ bool CASESession::InvokeBackgroundWorkWatchdog()
{
ChipLogError(SecureChannel, "SendSigma3Helper was unable to schedule the AfterWorkCallback");
mSendSigma3Helper->DoAfterWork();
wasBlocked = true;
watchdogFired = true;
}

if (mHandleSigma3Helper && mHandleSigma3Helper->UnableToScheduleAfterWorkCallback())
{
ChipLogError(SecureChannel, "HandleSigma3Helper was unable to schedule the AfterWorkCallback");
mHandleSigma3Helper->DoAfterWork();
wasBlocked = true;
watchdogFired = true;
}

return wasBlocked;
return watchdogFired;
}

} // namespace chip

0 comments on commit cf2eb88

Please sign in to comment.