зеркало из https://github.com/github/ruby.git
* 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:
Родитель
c3d1fde2b5
Коммит
a4587840cc
|
@ -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.
|
||||
|
|
18
object.c
18
object.c
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче