Monotone-Parent: cf5ca218da1c1ff34ff78091ca6ef9e4d34fdfb3

Monotone-Revision: 044ebf928befcb199e07d3b192460518361eb827

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-01-11T21:17:52
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-01-11 21:17:52 +00:00
parent 3c7d44df08
commit d82adbceca
2 changed files with 11 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
2011-01-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreContext.m (-openMessage:forKey:inTable:):
avoid taking NULL values into account when returning the basic
properties.
* OpenChange/SOGoContactGCSEntry+MAPIStore.m
(-setMAPIProperties:): added support for work address and its
corresponding addresse label. Preliminary support for

View File

@@ -803,11 +803,13 @@ _prepareContextClass (struct mapistore_context *newMemCtx,
@" returned for proptag %s(0x%.8x)",
propName, tags[count]];
}
set_SPropValue_proptag (properties->lpProps + properties->cValues,
tags[count],
propValue);
properties->cValues++;
else
{
set_SPropValue_proptag (properties->lpProps + properties->cValues,
tags[count],
propValue);
properties->cValues++;
}
}
}
msg->properties = properties;