From 62c68b4c93d3b8d11c1b8b701223c8b4902263fb Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 21 Oct 2017 10:23:59 +0000 Subject: [PATCH] do not need to clear by NULL because of last commit git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index 21f41e20c7..45d7021761 100644 --- a/gc.c +++ b/gc.c @@ -9366,7 +9366,7 @@ rb_raw_obj_info(char *buff, const int buff_size, VALUE obj) break; } case T_IMEMO: { - const char *imemo_name = NULL; + const char *imemo_name; switch (imemo_type(obj)) { #define IMEMO_NAME(x) case imemo_##x: imemo_name = #x; break; IMEMO_NAME(env);