mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[WIN32K:NTUSER]
- Don't pass an uninitialized DOSENDMESSAGE structure to co_IntDoSendMessage. CID 701425 svn path=/trunk/; revision=69646
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user