1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

string.c: $; is a GC-root

* string.c (Init_String): $; must be a GC-root, not to be
  collected.  [ruby-core:79582]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-03-13 09:12:05 +00:00
parent 1933215038
commit 16e804117c
2 changed files with 12 additions and 0 deletions

View file

@ -10191,6 +10191,7 @@ Init_String(void)
rb_fs = Qnil;
rb_define_hooked_variable("$;", &rb_fs, 0, rb_fs_setter);
rb_define_hooked_variable("$-F", &rb_fs, 0, rb_fs_setter);
rb_gc_register_address(&rb_fs);
rb_cSymbol = rb_define_class("Symbol", rb_cObject);
rb_include_module(rb_cSymbol, rb_mComparable);

View file

@ -1451,6 +1451,17 @@ CODE
assert_raise_with_message(TypeError, /\$;/) {
$; = []
}
assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}")
bug = '[ruby-core:79582] $; must not be GCed'
begin;
$; = " "
$a = nil
alias $; $a
alias $-F $a
GC.start
assert_equal([], "".split, bug)
end;
end
def test_split_encoding