Commit 62fdd43d authored by Junji Sawada's avatar Junji Sawada

RStruct.ptr must allocate members size

parent f89215c7
...@@ -412,7 +412,7 @@ mrb_struct_initialize_withArg(mrb_state *mrb, int argc, mrb_value *argv, mrb_val ...@@ -412,7 +412,7 @@ mrb_struct_initialize_withArg(mrb_state *mrb, int argc, mrb_value *argv, mrb_val
mrb_raise(mrb, E_ARGUMENT_ERROR, "struct size differs"); mrb_raise(mrb, E_ARGUMENT_ERROR, "struct size differs");
} }
st = RSTRUCT(self); st = RSTRUCT(self);
st->ptr = mrb_malloc(mrb, sizeof(mrb_value)*argc); st->ptr = mrb_calloc(mrb, sizeof(mrb_value), n);
st->len = n; st->len = n;
memcpy(st->ptr, argv, sizeof(mrb_value)*argc); memcpy(st->ptr, argv, sizeof(mrb_value)*argc);
......
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