Commit 56026c2d authored by mattn's avatar mattn

fclose if not null.

parent 90bd7371
......@@ -184,7 +184,8 @@ for_each_gem (char before[1024], char after[1024],
skip = FALSE;
else
skip = TRUE;
fclose(check);
if (check)
fclose(check);
}
if (skip == FALSE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment