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 --- ChangeLog | 5 +++++ process.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6534caaaf1..36f6551b1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 1 00:20:38 2008 Tanaka Akira + + * process.c (check_exec_redirect): don't depend on rb_stdout and + rb_stderr. + Tue Sep 30 23:06:58 2008 Yuki Sonoda (Yugui) * test/mini/test_mini_test.rb: removed. 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