Commit 4eb51234 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

mapi32: Fixed uninitialized variable (Coverity).

parent 4ae16e37
...@@ -59,7 +59,7 @@ static ULONG sendmail_extended_mapi(LHANDLE mapi_session, ULONG_PTR uiparam, lpM ...@@ -59,7 +59,7 @@ static ULONG sendmail_extended_mapi(LHANDLE mapi_session, ULONG_PTR uiparam, lpM
IMAPITable* msg_table; IMAPITable* msg_table;
LPSRowSet rows = NULL; LPSRowSet rows = NULL;
IMsgStore* msg_store; IMsgStore* msg_store;
IMAPIFolder* folder; IMAPIFolder* folder = NULL;
LPENTRYID entry_id; LPENTRYID entry_id;
LPSPropValue props; LPSPropValue props;
ULONG entry_len; ULONG entry_len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment