Do not initialize a local variable soon to be assigned.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-12-23 10:02:08 +09:00
parent 7e520838b3
commit aa8786f79c
@@ -84,7 +84,7 @@ dirname(mrb_state *mrb, const char *path)
static source_file*
source_file_new(mrb_state *mrb, mrb_debug_context *dbg, char *filename)
{
source_file *file = NULL;
source_file *file;
file = (source_file*)mrb_malloc(mrb, sizeof(source_file));