From ff65ba88adf6edca44c1df7c14738fde46fd3c08 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 14 Jun 2016 08:31:37 -0400 Subject: [PATCH] (fix) properly terminate dictionary initialization --- SoObjects/Appointments/SOGoAppointmentObject.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index bcd85d6b7..d85463383 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -553,7 +553,7 @@ values = [NSDictionary dictionaryWithObjectsAndKeys: [user cn], @"Cn", - [user systemEmail], @"SystemEmail"]; + [user systemEmail], @"SystemEmail", nil]; reason = [values keysWithFormat: [self labelForKey: @"Cannot access resource: \"%{Cn} %{SystemEmail}\""]]; return [NSException exceptionWithHTTPStatus:403 reason: reason]; }