From 7fbf13f7f21876b4206701cb3913fab5e7d82843 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 5 Dec 2003 02:54:48 +0000 Subject: * ext/stringio/stringio.c (strio_read): follow IO#read. * test/ruby/ut_eof.rb, test/ruby/test_file.rb, test/ruby/test_pipe.rb, test/stringio/test_stringio.rb: add EOF test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext/stringio/stringio.c') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 0fb60069de..725b5be192 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -866,10 +866,12 @@ strio_read(argc, argv, self) rb_raise(rb_eArgError, "wrong number arguments (%d for 0)", argc); } str = rb_str_substr(ptr->string, ptr->pos, len); - if (len > 0 && - (NIL_P(str) || (ptr->pos += RSTRING(str)->len) >= RSTRING(ptr->string)->len)) { + if (NIL_P(str)) { ptr->flags |= STRIO_EOF; } + else { + ptr->pos += RSTRING(str)->len; + } return str; } -- cgit v1.2.3