From 92aab1fd1f9fe652473ab0a4788109fc549a5bf1 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 14 Jun 2016 08:34:22 -0400 Subject: [PATCH] (fix) properly terminate dictionary inialization --- 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 c2ab6817f..65921ea8d 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -567,7 +567,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]; }