diff --git a/ChangeLog b/ChangeLog index e69de29bb..b32d335c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -0,0 +1,5 @@ +2005-01-07 Adam Fedor + + * Source/NSTimeZone.m (+abbreviationDictionary): Retain dictionary + (Fixes bug #11516). + diff --git a/Source/NSTimeZone.m b/Source/NSTimeZone.m index 2880ce35c..04d97108e 100644 --- a/Source/NSTimeZone.m +++ b/Source/NSTimeZone.m @@ -886,7 +886,7 @@ static NSMapTable *absolutes = 0; [[NSString stringWithContentsOfFile: path] propertyList]; abbreviationDictionary = [abbreviationDictionary makeImmutableCopyOnFail: NO]; - return abbreviationDictionary; + return RETAIN(abbreviationDictionary); } /**