Commit 154389ce authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

kernel32: SetNamedPipeHandleState() is a stub, so for now don't check its return value.

parent f2894533
......@@ -1538,11 +1538,15 @@ BOOL WINAPI CallNamedPipeW(
mode = PIPE_READMODE_MESSAGE;
ret = SetNamedPipeHandleState(pipe, &mode, NULL, NULL);
/* Currently SetNamedPipeHandleState() is a stub returning FALSE */
if (ret) FIXME("Now that SetNamedPipeHandleState() is more than a stub, please update CallNamedPipeW\n");
/*
if (!ret)
{
CloseHandle(pipe);
return FALSE;
}
}*/
ret = TransactNamedPipe(pipe, lpInput, lpInputSize, lpOutput, lpOutputSize, lpBytesRead, NULL);
CloseHandle(pipe);
......
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