Commit ee955b58 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Adjust allocation size in `mrb_id_attrset()` (`mruby-struct`)

parent b8d8f8fd
......@@ -129,10 +129,9 @@ mrb_id_attrset(mrb_state *mrb, mrb_sym id)
mrb_sym mid;
name = mrb_sym2name_len(mrb, id, &len);
buf = (char *)mrb_malloc(mrb, (size_t)len+2);
buf = (char *)mrb_malloc(mrb, (size_t)len+1);
memcpy(buf, name, (size_t)len);
buf[len] = '=';
buf[len+1] = '\0';
mid = mrb_intern(mrb, buf, len+1);
mrb_free(mrb, buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment