* io.c (rb_io_get_fptr): return non-null fptr.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-03-13 06:03:03 +00:00
Родитель 734fa23840
Коммит 3338bc99e5
1 изменённых файлов: 13 добавлений и 9 удалений

22
io.c
Просмотреть файл

@ -651,6 +651,13 @@ rb_io_check_closed(rb_io_t *fptr)
} }
} }
static rb_io_t *
rb_io_get_fptr(VALUE io)
{
rb_io_t *fptr = RFILE(io)->fptr;
rb_io_check_initialized(fptr);
return fptr;
}
VALUE VALUE
rb_io_get_io(VALUE io) rb_io_get_io(VALUE io)
@ -668,8 +675,7 @@ VALUE
rb_io_get_write_io(VALUE io) rb_io_get_write_io(VALUE io)
{ {
VALUE write_io; VALUE write_io;
rb_io_check_initialized(RFILE(io)->fptr); write_io = rb_io_get_fptr(io)->tied_io_for_writing;
write_io = RFILE(io)->fptr->tied_io_for_writing;
if (write_io) { if (write_io) {
return write_io; return write_io;
} }
@ -680,15 +686,15 @@ VALUE
rb_io_set_write_io(VALUE io, VALUE w) rb_io_set_write_io(VALUE io, VALUE w)
{ {
VALUE write_io; VALUE write_io;
rb_io_check_initialized(RFILE(io)->fptr); rb_io_t *fptr = rb_io_get_fptr(io);
if (!RTEST(w)) { if (!RTEST(w)) {
w = 0; w = 0;
} }
else { else {
GetWriteIO(w); GetWriteIO(w);
} }
write_io = RFILE(io)->fptr->tied_io_for_writing; write_io = fptr->tied_io_for_writing;
RFILE(io)->fptr->tied_io_for_writing = w; fptr->tied_io_for_writing = w;
return write_io ? write_io : Qnil; return write_io ? write_io : Qnil;
} }
@ -4422,8 +4428,7 @@ rb_io_close(VALUE io)
static VALUE static VALUE
rb_io_close_m(VALUE io) rb_io_close_m(VALUE io)
{ {
rb_io_t *fptr = RFILE(io)->fptr; rb_io_t *fptr = rb_io_get_fptr(io);
rb_io_check_initialized(fptr);
if (fptr->fd < 0) { if (fptr->fd < 0) {
return Qnil; return Qnil;
} }
@ -4495,8 +4500,7 @@ rb_io_closed(VALUE io)
} }
} }
fptr = RFILE(io)->fptr; fptr = rb_io_get_fptr(io);
rb_io_check_initialized(fptr);
return 0 <= fptr->fd ? Qfalse : Qtrue; return 0 <= fptr->fd ? Qfalse : Qtrue;
} }