GPF in EXSEC32.DLL

  • Thread starter Thread starter Alan
  • Start date Start date
A

Alan

I've just installed the latest Office 2003 Update from the
web and noticed that my application now crashes in
EXSEC32.DLL.

The following MAPI call to retrieve all properties causes
the crash

HRESULT hResult = pMess->GetProps (NULL ,
fMapiUnicode,
&ulPropCount,
&pspvMsgProps);

EXSEC32.DLL version 11.0.4920.7 does not crash
EXSEC32.DLL version 11.0.5329.6 crashes

Alan.
 
Calls like that are known to cause problems. Call IMessage::GetPropList(),
then use the returned PSPropTagArray to call IMessage::GetProps()

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Back
Top