Monotone-Parent: eb71a06a7fed1f1f665417f71984df862cf53c12

Monotone-Revision: bb133434e9e283747d7758877c0c8dcd50346b55

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-03-08T15:23:34
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-03-08 15:23:34 +00:00
parent 0e5c4a2164
commit 06013c4920
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2012-03-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFolder.m (-getPidTagSubFolders:inMemCtx:):
invoke [self folderKeys] rather than the corresponding ivar.
* OpenChange/MAPIStoreTypes.m (NSObjectFromMAPISPropValue)
(NSObjectFromSPropValue): treat PT_ERROR just as PT_LONG.

View File

@ -1196,7 +1196,7 @@ Class NSExceptionK, MAPIStoreFAIMessageK, MAPIStoreMessageTableK, MAPIStoreFAIMe
- (int) getPidTagSubfolders: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
*data = MAPIBoolValue (memCtx, [folderKeys count] > 0);
*data = MAPIBoolValue (memCtx, [[self folderKeys] count] > 0);
return MAPISTORE_SUCCESS;
}