Fix fd leak in get_font

This commit is contained in:
kevlo 2010-11-29 09:21:26 +00:00
parent 838a278ef3
commit d18de91c15

View File

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