1
0
Fork 0

do not close descriptors

This commit is contained in:
Jan Steemann 2013-02-06 10:16:57 +01:00
parent 77232eb830
commit 5e6b73e2d3
1 changed files with 3 additions and 3 deletions

View File

@ -209,9 +209,9 @@ static int forkProcess (string const& workingDirectory, string& current, Applica
}
// close the standard file descriptors
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
// close(STDIN_FILENO);
// close(STDOUT_FILENO);
// close(STDERR_FILENO);
return 0;
}