Commit 83cef86f authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Add SYNCHRONIZE access to mailslot handles.

Don't bother to request write access.
parent 5eb6c11a
...@@ -1701,7 +1701,7 @@ HANDLE WINAPI CreateMailslotW( LPCWSTR lpName, DWORD nMaxMessageSize, ...@@ -1701,7 +1701,7 @@ HANDLE WINAPI CreateMailslotW( LPCWSTR lpName, DWORD nMaxMessageSize,
else else
timeout.QuadPart = ((LONGLONG)0x7fffffff << 32) | 0xffffffff; timeout.QuadPart = ((LONGLONG)0x7fffffff << 32) | 0xffffffff;
status = NtCreateMailslotFile( &handle, GENERIC_READ | GENERIC_WRITE, &attr, status = NtCreateMailslotFile( &handle, GENERIC_READ | SYNCHRONIZE, &attr,
&iosb, 0, 0, nMaxMessageSize, &timeout ); &iosb, 0, 0, nMaxMessageSize, &timeout );
if (status) if (status)
{ {
......
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