* src/pfr/pfrload.c (pfr_phy_font_done): Free `blue_values' array.

This commit is contained in:
Werner Lemberg 2002-06-02 12:11:48 +00:00
parent e4decd8385
commit 153ba3f903
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-06-02 Detlef Würkner <TetiSoft@apg.lahn.de>
* src/pfr/pfrload.c (pfr_phy_font_done): Free `blue_values' array.
2002-05-29 Detlef Würkner <TetiSoft@apg.lahn.de>
* src/bdf/bdflib.c (_bdf_readstream): Allocate `buf' dynamically.

View File

@ -530,6 +530,9 @@
FT_FREE( phy_font->chars );
phy_font->num_chars = 0;
phy_font->chars_offset = 0;
FT_FREE( phy_font->blue_values );
phy_font->num_blue_values = 0;
}