Commit fbc56256 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Win32 console needs SYNCHRONIZE access.

parent 592ba105
......@@ -680,7 +680,7 @@ BOOL32 WINAPI AllocConsole(VOID)
}
req.output = 0;
req.access = GENERIC_READ | GENERIC_WRITE;
req.access = GENERIC_READ | GENERIC_WRITE | SYNCHRONIZE;
req.inherit = FALSE;
CLIENT_SendRequest( REQ_OPEN_CONSOLE, -1, 1, &req, sizeof(req) );
if (CLIENT_WaitSimpleReply( &reply, sizeof(reply), NULL ) != ERROR_SUCCESS)
......
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