* src/sfnt/sfobjs.c (sfnt_done_face): Free face->postscript_name.

This commit is contained in:
Werner Lemberg 2004-05-18 20:16:04 +00:00
parent 90b593ca07
commit 8b76608db7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-05-15 Werner Lemberg <wl@gnu.org>
* src/sfnt/sfobjs.c (sfnt_done_face): Free face->postscript_name.
2004-05-15 George Williams <gww@silcom.com>
* src/sfnt/ttload.c (tt_face_load_max_profile): Always set

View File

@ -838,9 +838,10 @@
FT_FREE( face->root.style_name );
/* freeing sbit size table */
FT_FREE( face->root.available_sizes );
face->root.num_fixed_sizes = 0;
if ( face->root.available_sizes )
FT_FREE( face->root.available_sizes );
FT_FREE( face->postscript_name );
face->sfnt = 0;
}