* src/sfnt/ttload.c (tt_face_load_metrics_header): Ignore missing

`hhea' table for SFNT Mac fonts.  Change based on a patch by
mpsuzuki@hiroshima-u.ac.jp.
This commit is contained in:
Werner Lemberg 2005-08-20 05:45:42 +00:00
parent 1a800db9c9
commit 9c27494f87
2 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2005-08-20 Werner Lemberg <wl@gnu.org>
* src/sfnt/ttload.c (tt_face_load_metrics_header): Ignore missing
`hhea' table for SFNT Mac fonts. Change based on a patch by
mpsuzuki@hiroshima-u.ac.jp.
2005-08-20 Masatake YAMATO <jet@gyve.org>
* src/otvalid/otvmod.c (otv_validate): Use ft_validator_run instead

View File

@ -1092,12 +1092,20 @@
}
else
{
/* The horizontal header is mandatory; return an error if we */
/* don't find it. */
/* The horizontal header is mandatory for most fonts; return */
/* an error if we don't find it. */
error = face->goto_table( face, TTAG_hhea, stream, 0 );
if ( error )
{
error = SFNT_Err_Horiz_Header_Missing;
/* No `hhea' table necessary for SFNT Mac fonts. */
if ( face->format_tag == TTAG_true )
{
FT_TRACE2(( "missing. This is an SFNT Mac font.\n"));
error = SFNT_Err_Ok;
}
goto Exit;
}