Monotone-Parent: ea1c783b905b07e028051a8a9d8f7bf4c894b0f2

Monotone-Revision: 52d4d51e45d656f36fb470bd76ffe251fdc37b9c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-05-31T05:01:43
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-05-31 05:01:43 +00:00
parent a5440bd52d
commit 29056ba07d
4 changed files with 33 additions and 9 deletions
+6 -2
View File
@@ -97,7 +97,9 @@ sogo_init (void)
*/
static int
sogo_create_context(TALLOC_CTX *mem_ctx, const char *uri, uint64_t fid,
sogo_create_context(TALLOC_CTX *mem_ctx,
struct mapistore_connection_info *conn_info,
const char *uri, uint64_t fid,
void **private_data)
{
NSAutoreleasePool *pool;
@@ -113,7 +115,9 @@ sogo_create_context(TALLOC_CTX *mem_ctx, const char *uri, uint64_t fid,
MAPIStoreContextK = NSClassFromString (@"MAPIStoreContext");
if (MAPIStoreContextK)
{
context = [MAPIStoreContextK contextFromURI: uri andFID: fid
context = [MAPIStoreContextK contextFromURI: uri
withConnectionInfo: conn_info
andFID: fid
inMemCtx: mem_ctx];
[context retain];