summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-27 20:56:03 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-27 20:56:03 +0000
commit343a1504e32c9910316182258bd8a7dfd13d2c9b (patch)
treebad87eee598d0b70833d4c1e15422a72e60bd3cd /io.c
parentee695fb164796dc203306f1585c4f6dd74f06806 (diff)
* io.c (read_all): fix if.
* io.c (rb_io_getline_1): move needless set encoding. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index e083b1b587..cd7f0aa07f 100644
--- a/io.c
+++ b/io.c
@@ -1384,7 +1384,7 @@ read_all(rb_io_t *fptr, long siz, VALUE str)
}
if (bytes != siz) rb_str_resize(str, bytes);
str = io_enc_str(str, fptr);
- if (fptr->enc2) {
+ if (!fptr->enc2) {
ENC_CODERANGE_SET(str, cr);
}
return str;
@@ -1960,10 +1960,10 @@ rb_io_getline_1(VALUE rs, long limit, VALUE io)
swallow(fptr, '\n');
}
}
+ str = io_enc_str(str, fptr);
}
if (!NIL_P(str)) {
- str = io_enc_str(str, fptr);
if (!nolimit) {
fptr->lineno++;
lineno = INT2FIX(fptr->lineno);