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
This commit is contained in:
ko1 2017-10-21 10:23:59 +00:00
parent 2ab99609e0
commit 62c68b4c93

2
gc.c
View File

@ -9366,7 +9366,7 @@ rb_raw_obj_info(char *buff, const int buff_size, VALUE obj)
break; break;
} }
case T_IMEMO: { case T_IMEMO: {
const char *imemo_name = NULL; const char *imemo_name;
switch (imemo_type(obj)) { switch (imemo_type(obj)) {
#define IMEMO_NAME(x) case imemo_##x: imemo_name = #x; break; #define IMEMO_NAME(x) case imemo_##x: imemo_name = #x; break;
IMEMO_NAME(env); IMEMO_NAME(env);