IO#sysread should raise IOError when closed

This commit is contained in:
ksss
2017-05-21 22:54:46 +09:00
parent 844b2c368f
commit 86edc9ab85
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -636,7 +636,7 @@ mrb_io_sysread(mrb_state *mrb, mrb_value io)
buf = mrb_str_resize(mrb, buf, maxlen);
}
fptr = (struct mrb_io *)mrb_get_datatype(mrb, io, &mrb_io_type);
fptr = (struct mrb_io *)io_get_open_fptr(mrb, io);
ret = read(fptr->fd, RSTRING_PTR(buf), maxlen);
switch (ret) {
case 0: /* EOF */
+1
View File
@@ -235,6 +235,7 @@ assert('IO.sysopen, IO#sysread') do
end
io.close
assert_equal "", io.sysread(0)
assert_raise(IOError) { io.sysread(1) }
io.closed?
end