mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/stringio/stringio.c (strio_sysread): StringIO.new.sysread didn't
raise EOFError. * ext/zlib/zlib.c (gzreader_gets): don't increment lineno when gzfile_read_all returns "". git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2d491003aa
commit
9d312f635b
3 changed files with 10 additions and 2 deletions
|
@ -908,7 +908,7 @@ strio_sysread(argc, argv, self)
|
|||
VALUE self;
|
||||
{
|
||||
VALUE val = strio_read(argc, argv, self);
|
||||
if (NIL_P(val)) {
|
||||
if (NIL_P(val) || RSTRING(val)->len == 0) {
|
||||
rb_eof_error();
|
||||
}
|
||||
return val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue