mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0028381: Draw Harness - DRAWEXE hangs up immediatly when redirecting input stream on Windows
This commit is contained in:
parent
4eaaf9d812
commit
0f358da3e3
@ -2075,15 +2075,11 @@ static DWORD WINAPI readStdinThreadFunc()
|
||||
else
|
||||
{
|
||||
const DWORD anErr = GetLastError();
|
||||
if (anErr == ERROR_INVALID_HANDLE)
|
||||
if (anErr != ERROR_SUCCESS)
|
||||
{
|
||||
// fallback using fgetws() which would work with pipes
|
||||
// but supports Unicode only through multi-byte encoding (which is not UTF-8)
|
||||
isConsoleInput = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "Error #" << anErr << " occurred while reading console input\n";
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user