Remove unnecessary initialization of a local variable.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-06-27 22:48:06 +09:00
parent 877e16501c
commit 3554a41a54
-1
View File
@@ -276,7 +276,6 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
mrb_int argc;
name = mrb_nil_value();
rest = mrb_nil_value();
mrb_get_args(mrb, "*&", &argv, &argc, &b);
if (argc == 0) { /* special case to avoid crash */
rest = mrb_ary_new(mrb);