diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-12-28 23:42:46 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-12-28 23:42:46 -0800 |
commit | 45bd2734b184382f7997dccb9363ed88a5a66542 (patch) | |
tree | f131da3dfeed5b29079b45a5a33cb986c174be72 /src | |
parent | a7f7e547d6d011b895cb90ec7963fa05aa7fd21a (diff) | |
download | emacs-45bd2734b184382f7997dccb9363ed88a5a66542.tar.gz |
* src/emacs.c (main): [DAEMON_MUST_EXEC]: Restore close-on-exec after exec.
Fixes: debbugs:16262
Diffstat (limited to 'src')
-rw-r--r-- | src/emacs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index b5bd3129ad2..2e835c34a8b 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1117,6 +1117,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem sscanf (dname_arg, "\n%d,%d\n%s", &(daemon_pipe[0]), &(daemon_pipe[1]), dname_arg2); dname_arg = *dname_arg2 ? dname_arg2 : NULL; + fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC); } #endif /* DAEMON_MUST_EXEC */ |