Commit 27909237 authored by Alexandre Julliard's avatar Alexandre Julliard

Removed incorrect process queue check in wait_input_idle.

parent 483320c4
......@@ -1168,7 +1168,7 @@ DECL_HANDLER(wait_input_idle)
reply->event = 0;
if ((process = get_process_from_handle( req->handle, PROCESS_QUERY_INFORMATION )))
{
if (process->idle_event && process != current->process && process->queue != current->queue)
if (process->idle_event && process != current->process)
reply->event = alloc_handle( current->process, process->idle_event,
EVENT_ALL_ACCESS, 0 );
release_object( process );
......
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