Merge pull request #4502 from shuujii/adjust-allocation-size-in-mrb_id_attrset-mruby-struct

Adjust allocation size in `mrb_id_attrset()` (`mruby-struct`)
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-06-17 12:18:48 +09:00
committed by GitHub
+1 -2
View File
@@ -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);