Monotone-Parent: 120ae771577fbc85a9d527667354ae451deab5eb

Monotone-Revision: 070ab5bab7996350566f161af861542e882b6ac8

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-12-08T20:42:44
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-12-08 20:42:44 +00:00
parent 663028cb9d
commit 91155624dc
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-12-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreObject.m (-addPropertiesFromRow:): perform
test on PT_STRING8 alone after "masking" the ulPropTag with 0xfff,
since PT_XX values are not bitmasks.
2011-12-06 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/ContactsUI.js (contactsListCallback):

View File

@ -452,7 +452,7 @@ static Class NSExceptionK, MAPIStoreFolderK;
for (counter = 0; counter < aRow->cValues; counter++)
{
cValue = aRow->lpProps + counter;
if ((cValue->ulPropTag & PT_STRING8) == PT_STRING8)
if ((cValue->ulPropTag & 0xfff) == PT_STRING8)
[self warnWithFormat:
@"attempting to set string property as PR_STRING8: %.8x",
cValue->ulPropTag];