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.
Popen::child_created_
1 parent 9e1ccf5 commit 05b6f87Copy full SHA for 05b6f87
src/util/subprocess.h
@@ -1027,7 +1027,6 @@ class Popen
1027
std::vector<std::string> vargs_;
1028
std::vector<char*> cargv_;
1029
1030
- bool child_created_ = false;
1031
// Pid of the child process
1032
int child_pid_ = -1;
1033
@@ -1177,8 +1176,6 @@ inline void Popen::execute_process() noexcept(false)
1177
1176
throw OSError("fork failed", errno);
1178
}
1179
1180
- child_created_ = true;
1181
-
1182
if (child_pid_ == 0)
1183
{
1184
// Close descriptors belonging to parent
0 commit comments