pull/67/head
Ludovic Marcotte 2014-12-04 12:21:23 -05:00
parent fe9ad9c6e9
commit 9ef4d1f551
2 changed files with 3 additions and 2 deletions

3
NEWS
View File

@ -10,7 +10,8 @@ Bug fixes
- Added support for IdP-initiated SAML2 logout (#2377)
- We now generate SAML2 metadata on the fly (#2378)
- We now handle correctly the SOGo logout when using SAML (#2376 and #2379)
- Fixed freebusy lookups going off bounds for resources (#3010)
2.2.10 (2014-11-21)
-------------------

View File

@ -229,7 +229,7 @@
// Build a bit string representation of the freebusy data for the period
freeBusyItems = NSZoneCalloc (NULL, intervals, sizeof (int));
[self _fillFreeBusyItems: (freeBusyItems+4)
count: intervals
count: (intervals-4)
withRecords: [fb fetchFreeBusyInfosFrom: start to: end forContact: uid]
fromStartDate: startDate
toEndDate: endDate];