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

View File

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