Unverified Commit 52318b33 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4851 from shuujii/refine-mrb_alloca

Refine `mrb_alloca()`
parents bc22991a a030446a
......@@ -280,8 +280,9 @@ mrb_free(mrb_state *mrb, void *p)
MRB_API void*
mrb_alloca(mrb_state *mrb, size_t size)
{
mrb_value str = mrb_str_new(mrb, NULL, size);
return RSTRING_PTR(str);
struct RString *s;
s = (struct RString*)mrb_obj_alloc(mrb, MRB_TT_STRING, mrb->string_class);
return s->as.heap.ptr = (char*)mrb_malloc(mrb, size);
}
static mrb_bool
......
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