Fix crash in Checkable::ProcessCheckResult when cr is NULL

refs #12329
This commit is contained in:
Gunnar Beutner 2016-08-08 14:17:44 +02:00
parent c7602a0f34
commit 1beef64dc4
1 changed files with 3 additions and 0 deletions

View File

@ -107,6 +107,9 @@ void Checkable::ProcessCheckResult(const CheckResult::Ptr& cr, const MessageOrig
m_CheckRunning = false;
}
if (!cr)
return;
double now = Utility::GetTime();
if (cr->GetScheduleStart() == 0)