From 252255cad4e813fd0d243fb4768198936d623326 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 30 Sep 2008 15:21:30 +0000 Subject: * process.c (check_exec_redirect): don't depend on rb_stdout and rb_stderr. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index a1c8ce8863..be60526a03 100644 --- a/process.c +++ b/process.c @@ -1334,8 +1334,9 @@ check_exec_redirect(VALUE key, VALUE val, VALUE options) index = EXEC_OPTION_OPEN; path = val; FilePathValue(path); - if ((FIXNUM_P(key) && (FIX2INT(key) == 1 || FIX2INT(key) == 2)) || - key == rb_stdout || key == rb_stderr) + if (TYPE(key) == T_FILE) + key = check_exec_redirect_fd(key); + if (FIXNUM_P(key) && (FIX2INT(key) == 1 || FIX2INT(key) == 2)) flags = INT2NUM(O_WRONLY|O_CREAT|O_TRUNC); else flags = INT2NUM(O_RDONLY); -- cgit v1.2.3