Commit 56e2a08d authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

win32u: Remove unnecessary set_cursor new_clip rect copy.

parent f5784e2f
......@@ -2614,13 +2614,7 @@ BOOL WINAPI NtUserClipCursor( const RECT *rect )
}
else req->flags = SET_CURSOR_NOCLIP;
if ((ret = !wine_server_call( req )))
{
new_rect.left = reply->new_clip.left;
new_rect.top = reply->new_clip.top;
new_rect.right = reply->new_clip.right;
new_rect.bottom = reply->new_clip.bottom;
}
ret = !wine_server_call( req );
}
SERVER_END_REQ;
......
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