[WIN32K:NTUSER]

- Don't pass an uninitialized DOSENDMESSAGE structure to co_IntDoSendMessage. CID 701425

svn path=/trunk/; revision=69646
This commit is contained in:
Thomas Faber
2015-10-22 15:12:09 +00:00
parent 2ecafe7510
commit 359fa267cc
+1 -1
View File
@@ -2760,7 +2760,7 @@ NtUserMessageCall( HWND hWnd,
_SEH2_END;
}
Ret = co_IntDoSendMessage( hWnd, Msg, wParam, lParam, &dsm );
Ret = co_IntDoSendMessage( hWnd, Msg, wParam, lParam, pdsm ? &dsm : NULL );
if (pdsm)
{