Merge pull request #4666 from dearblue/warn-str_new_capa

Suppress warning by gcc with `-Wmaybe-uninitialized`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-08-25 01:29:49 +09:00
committed by GitHub
+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);