[sfnt] Ignore all errors while loading `OS/2' table.

Suggested by Johnson Y. Yan <yinsen_yan@foxitsoftware.com>.

* src/sfnt/sfobjs.c (sfnt_load_face): Do it.
This commit is contained in:
Werner Lemberg 2010-11-18 13:08:52 +01:00
parent b70d8a0ef6
commit fa764cf868
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2010-11-18 Werner Lemberg <wl@gnu.org>
[sfnt] Ignore all errors while loading `OS/2' table.
Suggested by Johnson Y. Yan <yinsen_yan@foxitsoftware.com>.
* src/sfnt/sfobjs.c (sfnt_load_face): Do it.
2010-11-18 Johnson Y. Yan <yinsen_yan@foxitsoftware.com>
[type1] Fix matrix normalization.

View File

@ -691,9 +691,7 @@
LOAD_( os2 );
if ( error )
{
if ( error != SFNT_Err_Table_Missing )
goto Exit;
/* we treat the table as missing if there are any errors */
face->os2.version = 0xFFFFU;
}
}