From 10496cefeb08b60c3b0bd9f4502934fa39e30ee6 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 27 Jul 2006 08:25:18 +0000 Subject: * io.c (io_close): always calls "close" method of the receiver. [ruby-core:6911] [ruby-core:8112] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 450c39e338..87435a3e38 100644 --- a/io.c +++ b/io.c @@ -2226,15 +2226,17 @@ rb_io_close_m(VALUE io) } static VALUE -io_close(VALUE io) +io_call_close(VALUE io) { - if (TYPE(io) == T_FILE) { - rb_io_close(io); - return Qnil; - } return rb_funcall(io, rb_intern("close"), 0, 0); } +static VALUE +io_close(VALUE io) +{ + return rb_rescue(io_call_close, io, 0, 0); +} + /* * call-seq: * ios.closed? => true or false -- cgit v1.2.3