genksyms: close ref_file after use

It is the last place when the file is read, so close it.

Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
Alexander Beregalov
2010-01-07 05:22:41 +03:00
committed by Michal Marek
parent da60fbbcb6
commit c64152bfd0

View File

@@ -758,8 +758,10 @@ int main(int argc, char **argv)
/* setlinebuf(debugfile); */ /* setlinebuf(debugfile); */
} }
if (flag_reference) if (flag_reference) {
read_reference(ref_file); read_reference(ref_file);
fclose(ref_file);
}
yyparse(); yyparse();