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

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2018-03-07 16:59:40 +01:00 committed by Alexandre Julliard
parent 7a07a5e34f
commit bd7fb5b59e
1 changed files with 0 additions and 3 deletions

View File

@ -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)