summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2010-11-08 17:39:47 +0100
committerVladimir Glazunov <vg@openoffice.org>2010-11-08 17:39:47 +0100
commit213acedb8e2bcbd298eaa78ce52f5774119196f1 (patch)
tree9ec445af1a57cbd4b052005a4f6809ea300cd2cd /shell
parentCWS-TOOLING: integrate CWS sb132 (diff)
parentrebase to m91 (diff)
downloadcore-213acedb8e2bcbd298eaa78ce52f5774119196f1.tar.gz
core-213acedb8e2bcbd298eaa78ce52f5774119196f1.zip
CWS-TOOLING: integrate CWS os143
Diffstat (limited to 'shell')
-rw-r--r--shell/source/win32/simplemail/senddoc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/win32/simplemail/senddoc.cxx b/shell/source/win32/simplemail/senddoc.cxx
index c8ac40799cea..bb743960afc5 100644
--- a/shell/source/win32/simplemail/senddoc.cxx
+++ b/shell/source/win32/simplemail/senddoc.cxx
@@ -170,7 +170,7 @@ void initMapiMessage(
pMapiMessage->lpszSubject = const_cast<char*>(gSubject.c_str());
pMapiMessage->lpszNoteText = (gBody.length() ? const_cast<char*>(gBody.c_str()) : NULL);
pMapiMessage->lpOriginator = aMapiOriginator;
- pMapiMessage->lpRecips = &aMapiRecipientList[0];
+ pMapiMessage->lpRecips = aMapiRecipientList.size() ? &aMapiRecipientList[0] : 0;
pMapiMessage->nRecipCount = aMapiRecipientList.size();
pMapiMessage->lpFiles = &aMapiAttachmentList[0];
pMapiMessage->nFileCount = aMapiAttachmentList.size();