- Fix 1 wine console test

svn path=/trunk/; revision=39211
This commit is contained in:
Dmitry Chapyshev 2009-01-30 14:36:57 +00:00
parent e1e7e5586d
commit 01eaa29cb3

View file

@ -2893,7 +2893,11 @@ GetConsoleCursorInfo(HANDLE hConsoleOutput,
if (!lpConsoleCursorInfo)
{
if (!hConsoleOutput)
SetLastError(ERROR_INVALID_HANDLE);
else
SetLastError(ERROR_INVALID_ACCESS);
return FALSE;
}