Fix fd leak in get_font

This commit is contained in:
Kevin Lo 2010-11-29 09:21:26 +00:00
parent f6fa0b2b95
commit b77a4a441b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216047

View File

@ -229,6 +229,7 @@ get_font(void)
} else
fprintf(stderr, "Could not open %s for reading\n", sysconfig);
fclose(fp);
return fnt;
}