Fix compile error by #3309

This commit is contained in:
Yukihiro "Matz" Matsumoto
2016-12-01 18:37:03 +09:00
parent 61ac564c99
commit ab4ab7c8a0
+3 -1
View File
@@ -244,10 +244,12 @@ mrb_ary_s_create(mrb_state *mrb, mrb_value self)
static void
ary_concat(mrb_state *mrb, struct RArray *a, struct RArray *a2)
{
mrb_int len;
if (a2->len > ARY_MAX_SIZE - a->len) {
mrb_raise(mrb, E_ARGUMENT_ERROR, "array size too big");
}
mrb_int len = a->len + a2->len;
len = a->len + a2->len;
ary_modify(mrb, a);
if (a->aux.capa < len) {