* ext/stringio/stringio.c (strio_sysread): should not raise at empty
read. a patch from Arthur Schreiber at [ruby-core:17245]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1df1cb307e
commit
1a155ee7f6
@ -1,3 +1,8 @@
|
|||||||
|
Sat Jun 14 22:52:35 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/stringio/stringio.c (strio_sysread): should not raise at empty
|
||||||
|
read. a patch from Arthur Schreiber at [ruby-core:17245].
|
||||||
|
|
||||||
Sat Jun 14 16:55:46 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Jun 14 16:55:46 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* file.c (file_expand_path): no need to expand root path which has no
|
* file.c (file_expand_path): no need to expand root path which has no
|
||||||
|
@ -1152,7 +1152,7 @@ static VALUE
|
|||||||
strio_sysread(int argc, VALUE *argv, VALUE self)
|
strio_sysread(int argc, VALUE *argv, VALUE self)
|
||||||
{
|
{
|
||||||
VALUE val = strio_read(argc, argv, self);
|
VALUE val = strio_read(argc, argv, self);
|
||||||
if (NIL_P(val) || RSTRING_LEN(val) == 0) {
|
if (NIL_P(val)) {
|
||||||
rb_eof_error();
|
rb_eof_error();
|
||||||
}
|
}
|
||||||
return val;
|
return val;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user