Commit bd7fb5b5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kernel32: Don't return an error from TransactNamedPipe if an overlapped pointer is passed.

parent 7a07a5e3
......@@ -1731,10 +1731,7 @@ BOOL WINAPI TransactNamedPipe(
read_size, bytes_read, overlapped);
if (overlapped)
{
FIXME("Doesn't support overlapped operation as yet\n");
return FALSE;
}
r = WriteFile(handle, write_buf, write_size, &count, NULL);
if (r)
......
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