[KERNEL32]

Revert r62264.
Reason: all APIs set the last error when a CSR* call doesn't return STATUS_SUCCESS. If some winetests fail because of this, this is because we do not correctly do what's needed here (normally the TRUE or FALSE value is returned by the console server, and is not retrieved by a success or failure of a CSR call contrary to what's done here).

svn path=/trunk/; revision=62267
This commit is contained in:
Hermès Bélusca-Maïto 2014-02-20 20:17:53 +00:00
parent 76d29a732a
commit 6ca8f89b8b

View file

@ -796,6 +796,7 @@ VerifyConsoleIoHandle(HANDLE Handle)
sizeof(CONSOLE_VERIFYHANDLE));
if (!NT_SUCCESS(Status))
{
BaseSetLastNTError(Status);
return FALSE;
}