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

* variable.c (rb_mod_remove_const): fix segv caused by r38558.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38635 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-12-27 16:45:36 +00:00
parent 3e81553a1e
commit 109d71ac71
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Dec 27 21:56:56 2012 NARUSE, Yui <naruse@ruby-lang.org>
* variable.c (rb_mod_remove_const): fix segv caused by r38558.
Tue Dec 28 01:13:48 2012 James Edward Gray II <james@graysoftinc.com>
* lib/csv.rb: Added more Hash methods to CSV::Row.

View file

@ -1591,4 +1591,9 @@ class TestModule < Test::Unit::TestCase
end
assert_equal("", stderr)
end
def test_remove_const
m = Module.new
assert_raise(NameError){ m.instance_eval { remove_const(:__FOO__) } }
end
end

View file

@ -1919,7 +1919,7 @@ rb_mod_remove_const(VALUE mod, VALUE name)
}
else {
rb_name_error_str(name, "`%"PRIsVALUE"' is not allowed as a constant name",
QUOTE_ID(name));
QUOTE(name));
}
}
if (!rb_is_const_id(id)) {