Monotone-Parent: 2d5e6477bc1967b51bbbe812372dc78cb0f8f69f

Monotone-Revision: c40c5c6ccb865a2765307f1e9a53f079e5486bb4

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-29T14:31:47
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-07-29 14:31:47 +00:00
parent b8cf5216dd
commit 1a69a31aad
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-07-29 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreTable.m (-dealloc): free the list of
columns, otherwise the last list set is leaked.
2011-07-28 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreSOGo.m (sogo_folder_get_deleted_fmids):

View File

@ -289,6 +289,9 @@ static Class NSDataK, NSStringK;
restriction = nil;
restrictionState = MAPIRestrictionStateAlwaysTrue;
sortOrderings = nil;
columns = NULL;
columnsCount = 0;
}
return self;
@ -320,6 +323,8 @@ static Class NSDataK, NSStringK;
- (void) dealloc
{
[self logWithFormat: @"-dealloc"];
if (columns)
NSZoneFree (NULL, columns);
if (container)
[[MAPIStoreActiveTables activeTables] unregisterTable: self];
[currentChild release];