mirror of https://github.com/Icinga/icinga2.git
Merge pull request #7287 from Icinga/bugfix/script-debugger-crash-7284
Service: don't rely on the own host being already set during derivative state calculation
This commit is contained in:
commit
fdaab4b420
|
@ -125,7 +125,7 @@ int Service::GetSeverity() const
|
|||
severity |= SeverityFlagDowntime;
|
||||
else if (IsAcknowledged())
|
||||
severity |= SeverityFlagAcknowledgement;
|
||||
else if (m_Host->GetProblem())
|
||||
else if (m_Host && m_Host->GetProblem())
|
||||
severity |= SeverityFlagHostDown;
|
||||
else
|
||||
severity |= SeverityFlagUnhandled;
|
||||
|
@ -137,7 +137,7 @@ int Service::GetSeverity() const
|
|||
|
||||
bool Service::GetHandled() const
|
||||
{
|
||||
return Checkable::GetHandled() || m_Host->GetProblem();
|
||||
return Checkable::GetHandled() || (m_Host && m_Host->GetProblem());
|
||||
}
|
||||
|
||||
bool Service::IsStateOK(ServiceState state) const
|
||||
|
|
Loading…
Reference in New Issue