diff --git a/ChangeLog b/ChangeLog index 013f0ab23..27a01963d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-10-13 Wolfgang Sourdeau + * SoObjects/SOGo/LDAPSource.m (-dealloc): we release the + "searchAttributes" ivar, even though LDAPSource instances are + never deallocated. + * SoObjects/Mailer/SOGoMailObject+Draft.m (-contentForEditing): "keys" must be autoreleased to avoid a leak. diff --git a/SoObjects/SOGo/LDAPSource.m b/SoObjects/SOGo/LDAPSource.m index d0bd79629..112fe2440 100644 --- a/SoObjects/SOGo/LDAPSource.m +++ b/SoObjects/SOGo/LDAPSource.m @@ -196,6 +196,7 @@ static NSLock *lock; [sourceID release]; [modulesConstraints release]; [_scope release]; + [searchAttributes release]; [super dealloc]; }