From fcddc3fde34b6d9f5774e548a3c4262bf7da2e06 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 3 Jul 2006 01:44:05 +0000 Subject: * io.c (popen_exec): close file descriptors other than standard I/Os. fixed: [ruby-dev:28924] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 3d0e1632c..450c39e33 100644 --- a/io.c +++ b/io.c @@ -2950,11 +2950,7 @@ popen_exec(void *pp) popen_redirect(p); for (fd = 3; fd < NOFILE; fd++) { -#ifdef FD_CLOEXEC - fcntl(fd, F_SETFL, FD_CLOEXEC); -#else close(fd); -#endif } return rb_exec(&p->exec); } -- cgit