[Base] Undo last commit because it breaks file redirection.

This reverts commit ceece673e8.
This commit is contained in:
gibbed 2018-05-31 17:22:50 -05:00
parent ceece673e8
commit cd39bbed5c
1 changed files with 9 additions and 5 deletions

View File

@ -44,12 +44,16 @@ void AttachConsole() {
}
has_console_attached_ = true;
FILE* dummy;
freopen_s(&dummy, "CONIN$", "rb", stdin);
freopen_s(&dummy, "CONOUT$", "wb", stdout);
freopen_s(&dummy, "CONOUT$", "wb", stderr);
auto std_handle = (intptr_t)GetStdHandle(STD_OUTPUT_HANDLE);
auto con_handle = _open_osfhandle(std_handle, _O_TEXT);
auto fp = _fdopen(con_handle, "w");
*stdout = *fp;
setvbuf(stdout, nullptr, _IONBF, 0);
std_handle = (intptr_t)GetStdHandle(STD_ERROR_HANDLE);
con_handle = _open_osfhandle(std_handle, _O_TEXT);
fp = _fdopen(con_handle, "w");
*stderr = *fp;
setvbuf(stderr, nullptr, _IONBF, 0);
}