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

* eval_method.ci (rb_attr): should not use alloca for unknowen size

input.  [ruby-dev:31816]

* parse.y (rb_intern_str): prevent str from optimization.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13494 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-09-22 23:58:03 +00:00
parent 4fb45dd5dc
commit 0a274820bd
3 changed files with 11 additions and 7 deletions

View file

@ -1,3 +1,10 @@
Sun Sep 23 08:58:01 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval_method.ci (rb_attr): should not use alloca for unknowen size
input. [ruby-dev:31816]
* parse.y (rb_intern_str): prevent str from optimization.
Sun Sep 23 06:16:04 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval_method.ci (remove_method): check for undefined method.

View file

@ -409,10 +409,8 @@ void
rb_attr(VALUE klass, ID id, int read, int write, int ex)
{
const char *name;
char *buf;
ID attriv;
int noex;
size_t len;
if (!ex) {
noex = NOEX_PUBLIC;
@ -439,10 +437,7 @@ rb_attr(VALUE klass, ID id, int read, int write, int ex)
if (!name) {
rb_raise(rb_eArgError, "argument needs to be symbol or string");
}
len = strlen(name) + 2;
buf = ALLOCA_N(char, len);
snprintf(buf, len, "@%s", name);
attriv = rb_intern(buf);
attriv = rb_intern_str(rb_sprintf("@%s", name));
if (read) {
rb_add_method(klass, id, NEW_IVAR(attriv), noex);
}

View file

@ -8528,7 +8528,9 @@ rb_intern(const char *name)
ID
rb_intern_str(VALUE str)
{
return rb_intern3(RSTRING_PTR(str), RSTRING_LEN(str), rb_enc_get(str));
ID id = rb_intern3(RSTRING_PTR(str), RSTRING_LEN(str), rb_enc_get(str));
RB_GC_GUARD(str);
return id;
}
VALUE