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:
parent
7a07a5e34f
commit
bd7fb5b59e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue