Fix possible exception when retrieving reminder

Fixes #2678
pull/30/head
Francis Lachapelle 2014-03-24 07:42:57 -04:00
parent 89e61f6d5d
commit 50e7ea7188
2 changed files with 7 additions and 1 deletions

6
NEWS
View File

@ -1,3 +1,9 @@
2.2.3 (2014-MM-DD)
------------------
Bug fixes
- fixed possible exception when retrieving the default event reminder value on 64bit architectures (#2678)
2.2.2 (2014-03-21)
------------------

View File

@ -551,7 +551,7 @@ static NSArray *reminderValues = nil;
- (void) setReminder: (NSString *) theReminder
{
NSString *value;
int index;
NSUInteger index;
index = NSNotFound;
value = @"NONE";