aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-filter-search.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-filter-search.c')
-rw-r--r--camel/camel-filter-search.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/camel/camel-filter-search.c b/camel/camel-filter-search.c
index c90bda41a3..42f04b0f22 100644
--- a/camel/camel-filter-search.c
+++ b/camel/camel-filter-search.c
@@ -530,12 +530,8 @@ run_command (struct _ESExp *f, int argc, struct _ESExpResult **argv, FilterMessa
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++)