GRAPHICS: Fix possible memory leak in BdfFont code.

This commit is contained in:
Johannes Schickel 2011-07-01 21:55:21 +02:00
parent fa5f8dc703
commit a79f529f4c

View File

@ -177,6 +177,7 @@ void free_font(BdfFontData *pf) {
return;
free(pf->name);
free(pf->facename);
free(pf->copyright);
free(pf->bits);
free(pf->offset);
free(pf->width);