* src/pcf/pcfdriver.c (PCF_Done_Face): Fix incorrect destruction of

the face object (face->toc.tables, face->root.family_name,
face->root.available_size, face->charset_encoding,
face->charset_registry are now freed).  Thanks to Niels Moseley.
This commit is contained in:
Werner Lemberg 2002-01-28 23:52:24 +00:00
parent 7c836c227c
commit e8d3b9b75d
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2002-01-28 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
* src/pcf/pcfdriver.c (PCF_Done_Face): Fix incorrect destruction of
the face object (face->toc.tables, face->root.family_name,
face->root.available_size, face->charset_encoding,
face->charset_registry are now freed). Thanks to Niels Moseley.
2002-01-28 Roberto Alameda <ojancano@geekmail.de>
* src/type1/t1load.c (parse_encoding): Set `loader->num_chars'.

View File

@ -66,6 +66,11 @@ THE SOFTWARE.
FREE( tmp->value );
}
FREE( face->properties );
FREE( face->toc.tables );
FREE( face->root.family_name );
FREE( face->root.available_sizes );
FREE( face->charset_encoding );
FREE( face->charset_registry );
FT_TRACE4(( "DONE_FACE!!!\n" ));