Monotone-Parent: 068bea34405b0256117d10e651c8cbc5279e8821

Monotone-Revision: 52f97967a551afb1284c9e0105d60c36d40f471a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-12T21:47:20
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-07-12 21:47:20 +00:00
parent 54b3b042c5
commit d999da2ad1
2 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,9 @@
2011-07-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreFSMessage.m
(+getAvailableProperties:inMemCtx:): added memCtx parameter.
* OpenChange/MAPIStoreSOGo.m: (sogo_op_get_table_property)
(sogo_op_get_available_table_properties): removed obsolete
methods.

View File

@ -38,6 +38,7 @@
@implementation MAPIStoreFSMessage
+ (int) getAvailableProperties: (struct SPropTagArray **) propertiesP
inMemCtx: (TALLOC_CTX *) memCtx
{
struct SPropTagArray *properties;
NSUInteger count;
@ -45,7 +46,7 @@
0x683f0102, 0x68410003, 0x68420102,
0x68450102, 0x68460003 };
properties = talloc_zero (NULL, struct SPropTagArray);
properties = talloc_zero (memCtx, struct SPropTagArray);
properties->cValues = MAPIStoreSupportedPropertiesCount + 8;
properties->aulPropTag = talloc_array (NULL, enum MAPITAGS,
MAPIStoreSupportedPropertiesCount + 8);