Actions
Bug #21210
openIO::Buffer gets invalidated on GC compaction
Status:
Open
Assignee:
-
Target version:
-
ruby -v:
ruby 3.5.0dev (2025-04-01T16:11:01Z master 30e5e7c005) +PRISM [x86_64-linux]
Description
6012145299cfa4ab561360c78710c7f2941a7e9d implemented compaction for IO::Buffer
.
It looks like this doesn't work well with an IO::Buffer
that shares memory region with a String object.
I think the problem is that an IO::Buffer
holds the raw pointer to the String content, and now the content can be moved by GC when the String is embedded.
str = +"hello"
buf = IO::Buffer.for(str)
p buf.valid?
GC.verify_compaction_references(expand_heap: true, toward: :empty)
p buf.valid? #=> should be true
This example should print two trues. Actually:
% ./ruby -v --disable-gems test.rb
ruby 3.5.0dev (2025-04-01T16:11:01Z master 30e5e7c005) +PRISM [x86_64-linux]
true
false
Actions
Like0
Like0Like0Like1Like0Like0Like0Like0