summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-10-31 22:39:03 (GMT)
committerEvan Martin <martine@danga.com>2011-10-31 22:39:53 (GMT)
commitbb52198d196ba294908abad00960783456e40f8b (patch)
treed337b9553256648609fbecde918342e654aa2543 /src
parenta6212990930c1ca85488bada1936ce41aac34364 (diff)
downloadNinja-bb52198d196ba294908abad00960783456e40f8b.zip
Ninja-bb52198d196ba294908abad00960783456e40f8b.tar.gz
Ninja-bb52198d196ba294908abad00960783456e40f8b.tar.bz2
don't leak fds into subprocesses
Patch from Antoine Labour <piman@chromium.org>, (hacky) test by me.
Diffstat (limited to 'src')
-rw-r--r--src/subprocess.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/subprocess.cc b/src/subprocess.cc
index 4426da0..65322a6 100644
--- a/src/subprocess.cc
+++ b/src/subprocess.cc
@@ -42,6 +42,7 @@ bool Subprocess::Start(SubprocessSet* set, const string& command) {
if (pipe(output_pipe) < 0)
Fatal("pipe: %s", strerror(errno));
fd_ = output_pipe[0];
+ SetCloseOnExec(fd_);
pid_ = fork();
if (pid_ < 0)