gspawn: Fix leak of internal pipe with G_SPAWN_LEAVE_DESCRIPTORS_OPEN

Even when the app author specifies G_SPAWN_LEAVE_DESCRIPTORS_OPEN,
we should avoid leaking our internal pipe machinery into the
child.

Commit message written by: Colin Walters <walters@verbum.org>

https://bugzilla.gnome.org/show_bug.cgi?id=703407
This commit is contained in:
Paul Barbieri 2013-07-01 21:10:28 +01:00 committed by Colin Walters
parent 1891eafd1d
commit e55ccf7338

View File

@ -1395,6 +1395,7 @@ fork_exec_with_pipes (gboolean intermediate_child,
}
else if (grandchild_pid == 0)
{
close_and_invalidate (&child_pid_report_pipe[1]);
do_exec (child_err_report_pipe[1],
stdin_pipe[0],
stdout_pipe[1],