From c9c27e9d69ddd656343b8a0e876887f511fe6d03 Mon Sep 17 00:00:00 2001 From: dearblue Date: Sat, 24 Aug 2019 11:44:51 +0900 Subject: Suppress warning by gcc with `-Wmaybe-uninitialized` --- src/string.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/string.c') diff --git a/src/string.c b/src/string.c index 190e87123..8d1d53521 100644 --- a/src/string.c +++ b/src/string.c @@ -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); -- cgit v1.2.3