mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-05 16:35:10 +00:00
Monotone-Parent: a7de776942b3d74e0380fedb944ee4a08d4037dd
Monotone-Revision: 80c8d4e2847b46d0107ef53db2c5605e438d8350 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-09-26T16:21:03 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
2011-09-26 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* OpenChange/MAPIStoreFolder.m
|
||||
(-moveCopyMessagesWithMID:fromFolder:withMID:wantCopy:): ensure
|
||||
that "data" is not NULL before passing it to
|
||||
set_SPropValue_proptag as it might be converted to a PT_ERROR
|
||||
value.
|
||||
|
||||
* SoObjects/Mailer/SOGoDraftObject.m (-sendMailAndCopyToSent:):
|
||||
renamed "sendMail" and made copying the messsage to the sent
|
||||
folder opetional.
|
||||
|
||||
@@ -605,7 +605,7 @@ Class NSExceptionK, MAPIStoreFAIMessageK, MAPIStoreMessageTableK, MAPIStoreFAIMe
|
||||
error = [sourceMsg getProperty: &data
|
||||
withTag: propTag
|
||||
inMemCtx: aRow];
|
||||
if (error == MAPISTORE_SUCCESS)
|
||||
if (error == MAPISTORE_SUCCESS && data)
|
||||
{
|
||||
set_SPropValue_proptag(&aRow->lpProps[aRow->cValues], propTag, data);
|
||||
aRow->cValues++;
|
||||
|
||||
Reference in New Issue
Block a user