From c32badaff5ebbb68a009044ce1343ea78dd8d8f1 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 6 Apr 2017 11:25:40 +0200 Subject: [PATCH] Add missing base class call for ScheduledDowntime::ValidateRanges() fixes #5146 --- lib/icinga/scheduleddowntime.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/icinga/scheduleddowntime.cpp b/lib/icinga/scheduleddowntime.cpp index 200477d34..c51c5c296 100644 --- a/lib/icinga/scheduleddowntime.cpp +++ b/lib/icinga/scheduleddowntime.cpp @@ -199,6 +199,8 @@ void ScheduledDowntime::CreateNextDowntime(void) void ScheduledDowntime::ValidateRanges(const Dictionary::Ptr& value, const ValidationUtils& utils) { + ObjectImpl::ValidateRanges(value, utils); + if (!value) return;