diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-12-02 06:51:58 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-12-02 06:51:58 +0800 |
commit | 9d8f9dea7be5a8d8973198eb5367d9f055f74974 (patch) | |
tree | ff9d7843085dca33af57f8d2f6d22684fae4906f /camel/camel-filter-driver.c | |
parent | 7a7855e2879922b371597b25c27fd97d79dd165a (diff) | |
download | gsoc2013-evolution-9d8f9dea7be5a8d8973198eb5367d9f055f74974.tar.gz gsoc2013-evolution-9d8f9dea7be5a8d8973198eb5367d9f055f74974.tar.zst gsoc2013-evolution-9d8f9dea7be5a8d8973198eb5367d9f055f74974.zip |
Start at fd = 3.
2003-12-01 Jeffrey Stedfast <fejj@ximian.com>
* camel-process.c (camel_process_fork): Start at fd = 3.
* camel-gpg-context.c (gpg_ctx_op_start): Same.
* camel-filter-driver.c (pipe_to_system): Same.
* camel-filter-search.c (run_command): Start at fd = 3.
svn path=/trunk/; revision=23549
Diffstat (limited to 'camel/camel-filter-driver.c')
-rw-r--r-- | camel/camel-filter-driver.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/camel/camel-filter-driver.c b/camel/camel-filter-driver.c index 789ec90cba..75836dea67 100644 --- a/camel/camel-filter-driver.c +++ b/camel/camel-filter-driver.c @@ -692,12 +692,8 @@ pipe_to_system (struct _ESExp *f, int argc, struct _ESExpResult **argv, CamelFil setsid (); maxfd = sysconf (_SC_OPEN_MAX); - if (maxfd > 0) { - for (fd = 0; fd < maxfd; fd++) { - if (fd != STDIN_FILENO && fd != STDOUT_FILENO && fd != STDERR_FILENO) - fcntl (fd, F_SETFD, FD_CLOEXEC); - } - } + for (fd = 3; fd < maxfd; fd++) + fcntl (fd, F_SETFD, FD_CLOEXEC); args = g_ptr_array_new (); for (i = 0; i < argc; i++) |