We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd7ac5 commit cf03e17Copy full SHA for cf03e17
gui/checkthread.cpp
@@ -77,7 +77,7 @@ static bool executeCommand(std::string exe, std::vector<std::string> args, std::
77
78
if (redirect.compare(0,3,"2> ") == 0) {
79
std::ofstream fout(redirect.substr(3));
80
- fout->exceptions(std::ios_base::failbit | std::ios_base::badbit);
+ fout.exceptions(std::ios_base::failbit | std::ios_base::badbit);
81
fout << process.readAllStandardError().toStdString();
82
}
83
return process.exitCode() == 0;
0 commit comments