Fixed `length` for IO should be in bytes, not in characters; #4696

E.g. `io.read(5)` should read 5 byte string, not 5 characters.
parent ec3aeede
...@@ -207,9 +207,9 @@ class IO ...@@ -207,9 +207,9 @@ class IO
end end
if length if length
consume = (length <= @buf.size) ? length : @buf.size consume = (length <= @buf.bytesize) ? length : @buf.bytesize
array.push @buf[0, consume] array.push @buf.byteslice(0, consume)
@buf = @buf[consume, @buf.size - consume] @buf = @buf.byteslice(consume, @buf.bytesize - consume)
length -= consume length -= consume
break if length == 0 break if length == 0
else else
...@@ -254,14 +254,14 @@ class IO ...@@ -254,14 +254,14 @@ class IO
break break
end end
if limit && limit <= @buf.size if limit && limit <= @buf.bytesize
array.push @buf[0, limit] array.push @buf.byteslice(0, limit)
@buf = @buf[limit, @buf.size - limit] @buf = @buf.byteslice(limit, @buf.bytesize - limit)
break break
elsif idx = @buf.index(rs) elsif idx = @buf.index(rs)
len = idx + rs.size len = idx + rs.bytesize
array.push @buf[0, len] array.push @buf.byteslice(0, len)
@buf = @buf[len, @buf.size - len] @buf = @buf.byteslice(len, @buf.bytesize - len)
break break
else else
array.push @buf array.push @buf
...@@ -284,8 +284,8 @@ class IO ...@@ -284,8 +284,8 @@ class IO
def readchar def readchar
_read_buf _read_buf
c = @buf[0] c = @buf.byteslice(0,1)
@buf = @buf[1, @buf.size] @buf = @buf.byteslice(1, @buf.bytesize)
c c
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment