Suppress warning by gcc with -Wmaybe-uninitialized

This commit is contained in:
dearblue
2019-08-24 11:44:51 +09:00
parent 71242c0f2e
commit c9c27e9d69
+2
View File
@@ -164,6 +164,8 @@ mrb_str_new_capa(mrb_state *mrb, size_t capa)
}
else if (capa >= MRB_INT_MAX) {
mrb_raise(mrb, E_ARGUMENT_ERROR, "string capacity size too big");
/* not reached */
s = NULL;
}
else {
s = str_init_normal_capa(mrb, mrb_obj_alloc_string(mrb), NULL, 0, capa);