Fix crash in NotificationComponent::NotificationTimerHandler().

This commit is contained in:
Gunnar Beutner 2013-08-05 08:56:36 +02:00
parent d4015fe218
commit d245bbfc77
1 changed files with 4 additions and 0 deletions

View File

@ -77,6 +77,10 @@ void NotificationComponent::NotificationTimerHandler(void)
continue;
Service::Ptr service = notification->GetService();
if (!service)
continue;
bool reachable = service->IsReachable();
{