Monotone-Parent: b5395887a09dd182d09095356fc372c77721f166

Monotone-Revision: 28db46689fe3ccc299be6164973466befdedb0f7

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-10-24T20:48:53
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-10-24 20:48:53 +00:00
parent e20f416d09
commit 5f3b6f5165
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2011-10-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreAttachment.m
(-getProperty:withTag:inMemCtx:): fallback on super's
implementation to benefit from the property getters methods.
* OpenChange/MAPIStoreContactsMessage.m (-getPrBody:inMemCtx:): if
the attribute length is 0, return MAPISTORE_ERR_NOT_FOUND.
(-_fetchAttachmentParts, -getPidLidHasPicture:inMemCtx:)

View File

@ -85,7 +85,7 @@
break;
default:
rc = MAPISTORE_ERR_NOT_FOUND;
rc = [super getProperty: data withTag: propTag inMemCtx: memCtx];
}
return rc;