Monotone-Parent: 5256e25412e03d77d707a92d0bcfda4e03f05d98

Monotone-Revision: d37b05310d38d5954711085cdeecbc2ffc7e8d82

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-09-05T20:06:22
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-09-05 20:06:22 +00:00
parent d2856c26c8
commit 9874fa469c
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2012-09-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreCalendarAttachment.m
(-getPidTagDisplayName:inMemCtx:): return an allocated value,
since returned values must be assigned to another parent.
2012-08-28 Jean Raby <jraby@inverse.ca>
* Scripts/openchange_cleanup.py:

View File

@ -124,7 +124,7 @@
- (int) getPidTagDisplayName: (void **) data
inMemCtx: (TALLOC_CTX *) localMemCtx
{
*data = "Untitled";
*data = [@"Untitled" asUnicodeInMemCtx: localMemCtx];
return MAPISTORE_SUCCESS;
}