summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean Boussier <byroot@ruby-lang.org>2023-11-09 10:17:46 +0100
committerJean Boussier <jean.boussier@gmail.com>2023-11-09 11:45:02 +0100
commitb013aae0c66fbef0faaab29ceeda18bae4fef608 (patch)
tree7cb11bccb5c5aa5473817a2612b25b0fa7d4d2b8
parent0f02fbd9ffc0c26fa160505872a6c0d0b0493028 (diff)
IO#read always check the provided buffer is mutable
Otherwise you can have work in some circumstance but not in others.
-rw-r--r--io.c3
-rw-r--r--spec/ruby/core/io/read_spec.rb26
2 files changed, 28 insertions, 1 deletions
diff --git a/io.c b/io.c
index 28b5abb1c5..7ded212804 100644
--- a/io.c
+++ b/io.c
@@ -3276,9 +3276,10 @@ io_setstrbuf(VALUE *str, long len)
}
else {
VALUE s = StringValue(*str);
+ rb_str_modify(s);
+
long clen = RSTRING_LEN(s);
if (clen >= len) {
- rb_str_modify(s);
return FALSE;
}
len -= clen;
diff --git a/spec/ruby/core/io/read_spec.rb b/spec/ruby/core/io/read_spec.rb
index 996f70bf20..db11468ea4 100644
--- a/spec/ruby/core/io/read_spec.rb
+++ b/spec/ruby/core/io/read_spec.rb
@@ -299,6 +299,32 @@ describe "IO#read" do
@io.read(10, buf).should == nil
buf.should == ''
+
+ buf = 'non-empty string'
+
+ @io.read(nil, buf).should == ""
+
+ buf.should == ''
+
+ buf = 'non-empty string'
+
+ @io.read(0, buf).should == ""
+
+ buf.should == ''
+ end
+
+ it "raise FrozenError if the output buffer is frozen" do
+ @io.read
+ -> { @io.read(0, 'frozen-string'.freeze) }.should raise_error(FrozenError)
+ -> { @io.read(1, 'frozen-string'.freeze) }.should raise_error(FrozenError)
+ -> { @io.read(nil, 'frozen-string'.freeze) }.should raise_error(FrozenError)
+ end
+
+ ruby_bug "", ""..."3.3" do
+ it "raise FrozenError if the output buffer is frozen (2)" do
+ @io.read
+ -> { @io.read(1, ''.freeze) }.should raise_error(FrozenError)
+ end
end
it "consumes zero bytes when reading zero bytes" do