Commit d07a7bbb authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

user.exe: Fully convert MSG16 to MSG in IsDialogMessage() (Coverity).

parent 4d3b87fc
......@@ -1836,6 +1836,9 @@ BOOL16 WINAPI IsDialogMessage16( HWND16 hwndDlg, MSG16 *msg16 )
msg.message = msg16->message;
msg.wParam = msg16->wParam;
msg.lParam = msg16->lParam;
msg.time = msg16->time;
msg.pt.x = msg16->pt.x;
msg.pt.y = msg16->pt.y;
return IsDialogMessageA( hwndDlg32, &msg );
}
......
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