From 595309d50304bebcc586dea8dd6e9dce6d8f21ed Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 21 Aug 2008 18:03:52 +0000 Subject: * io.c (rb_io_s_sysopen): mode can be a Bignum. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 1e3e2c338..f0626d0d6 100644 --- a/io.c +++ b/io.c @@ -4624,25 +4624,28 @@ static VALUE rb_io_s_sysopen(int argc, VALUE *argv) { VALUE fname, vmode, vperm; - int flags, fd; + VALUE intmode; + int modenum, fd; mode_t perm; char *path; rb_scan_args(argc, argv, "12", &fname, &vmode, &vperm); FilePathValue(fname); - if (NIL_P(vmode)) flags = O_RDONLY; - else if (FIXNUM_P(vmode)) flags = FIX2INT(vmode); + if (NIL_P(vmode)) + modenum = O_RDONLY; + else if (!NIL_P(intmode = rb_check_to_integer(vmode, "to_int"))) + modenum = NUM2INT(intmode); else { SafeStringValue(vmode); - flags = rb_io_mode_modenum(StringValueCStr(vmode)); + modenum = rb_io_mode_modenum(StringValueCStr(vmode)); } if (NIL_P(vperm)) perm = 0666; else perm = NUM2UINT(vperm); RB_GC_GUARD(fname) = rb_str_new4(fname); path = RSTRING_PTR(fname); - fd = rb_sysopen(path, flags, perm); + fd = rb_sysopen(path, modenum, perm); return INT2NUM(fd); } -- cgit