* object.c (rb_mod_cvar_set): Reverted "avoid inadvertent

symbol creation" to avoid SEGV by
  Class.new.class_variable_set(1, 2).



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-04-04 13:26:39 +00:00
Родитель c3d1fde2b5
Коммит a4587840cc
2 изменённых файлов: 10 добавлений и 14 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Thu Apr 4 22:08:46 2013 Tanaka Akira <akr@fsij.org>
* object.c (rb_mod_cvar_set): Reverted "avoid inadvertent
symbol creation" to avoid SEGV by
Class.new.class_variable_set(1, 2).
Thu Apr 4 20:07:19 2013 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_write): New method.

Просмотреть файл

@ -2296,21 +2296,11 @@ rb_mod_cvar_get(VALUE obj, VALUE iv)
static VALUE
rb_mod_cvar_set(VALUE obj, VALUE iv, VALUE val)
{
ID id;
ID id = rb_to_id(iv);
if (SYMBOL_P(iv)) {
id = SYM2ID(iv);
if (!rb_is_class_id(id)) {
rb_name_error(id, "`%"PRIsVALUE"' is not allowed as an class variable name",
QUOTE_ID(id));
}
}
else if (!rb_is_class_id(iv)) {
rb_name_error_str(iv, "`%"PRIsVALUE"' is not allowed as a class variable name",
QUOTE(iv));
}
else {
id = rb_to_id(iv);
if (!rb_is_class_id(id)) {
rb_name_error(id, "`%"PRIsVALUE"' is not allowed as a class variable name",
QUOTE_ID(id));
}
rb_cvar_set(obj, id, val);
return val;