mapi32: initialize session pointer to zero in MAPILogonEx (2nd resend)

Juan Lang juan.lang at gmail.com
Mon Oct 6 15:29:11 CDT 2008


Hi Louis, this isn't about spaces this time.

diff --git a/dlls/mapi32/mapi32_main.c b/dlls/mapi32/mapi32_main.c
index 936d435..5aace9a 100644
--- a/dlls/mapi32/mapi32_main.c
+++ b/dlls/mapi32/mapi32_main.c
@@ -109,6 +109,7 @@ HRESULT WINAPI MAPILogonEx(ULONG_PTR uiparam,
LPWSTR profile,
 {
     FIXME("(0x%08lx %s %p 0x%08x %p) Stub\n", uiparam,
           debugstr_w(profile), password, flags, session);
+    *session=0;
     return SUCCESS_SUCCESS;
 }

Are you guaranteed that session is not NULL?  A test case would help.
--Juan



More information about the wine-devel mailing list