1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0028381: Draw Harness - DRAWEXE hangs up immediatly when redirecting input stream on Windows

This commit is contained in:
nbv 2017-01-23 11:05:16 +03:00 committed by apn
parent 4eaaf9d812
commit 0f358da3e3

View File

@ -2075,15 +2075,11 @@ static DWORD WINAPI readStdinThreadFunc()
else else
{ {
const DWORD anErr = GetLastError(); const DWORD anErr = GetLastError();
if (anErr == ERROR_INVALID_HANDLE) if (anErr != ERROR_SUCCESS)
{ {
// fallback using fgetws() which would work with pipes // fallback using fgetws() which would work with pipes
// but supports Unicode only through multi-byte encoding (which is not UTF-8) // but supports Unicode only through multi-byte encoding (which is not UTF-8)
isConsoleInput = false; isConsoleInput = false;
}
else
{
std::cerr << "Error #" << anErr << " occurred while reading console input\n";
continue; continue;
} }
} }