small bug fix used to compile when the SFNT

module doesn't support embedded bitmaps and
postscript names..
This commit is contained in:
David Turner 2000-02-13 13:38:27 +00:00
parent 7663f22288
commit 851688057d
1 changed files with 2 additions and 2 deletions

View File

@ -363,11 +363,11 @@
if (sfnt)
{
/* destroy the postscript names table if it is supported */
if (sfnt->load_psnames)
if (sfnt->free_psnames)
sfnt->free_psnames( face );
/* destroy the embedded bitmaps table if it is supported */
if (sfnt->load_sbits)
if (sfnt->free_sbits)
sfnt->free_sbits( face );
}