diff options
| author | Dan Nicolaescu | 2008-12-08 16:22:40 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-12-08 16:22:40 +0000 |
| commit | 7c19d3aedbc55c4458bd8911aaa614c0c7f2c316 (patch) | |
| tree | 6f943a7ab287d8f863e40a84b9ed141b522635e6 /src/emacs.c | |
| parent | d31eee5eccaab4f86222be76ddb383bf9db2188c (diff) | |
| download | emacs-7c19d3aedbc55c4458bd8911aaa614c0c7f2c316.tar.gz emacs-7c19d3aedbc55c4458bd8911aaa614c0c7f2c316.zip | |
(main): Close daemon_pipe on exec.
Diffstat (limited to 'src/emacs.c')
| -rw-r--r-- | src/emacs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index b4d09ac5d2d..bd733da303f 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1143,6 +1143,10 @@ main (int argc, char **argv) | |||
| 1143 | daemon_name = xstrdup (dname_arg); | 1143 | daemon_name = xstrdup (dname_arg); |
| 1144 | /* Close unused reading end of the pipe. */ | 1144 | /* Close unused reading end of the pipe. */ |
| 1145 | close (daemon_pipe[0]); | 1145 | close (daemon_pipe[0]); |
| 1146 | /* Make sure that the used end of the pipe is closed on exec, so | ||
| 1147 | that it is not accessible to programs started from .emacs. */ | ||
| 1148 | fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC); | ||
| 1149 | |||
| 1146 | #ifdef HAVE_SETSID | 1150 | #ifdef HAVE_SETSID |
| 1147 | setsid(); | 1151 | setsid(); |
| 1148 | #endif | 1152 | #endif |