* src/sfnt/sfobjs.c (sfnt_open_font): Use TTAG_OTTO

This commit is contained in:
Suzuki, Toshiya (鈴木俊哉) 2008-08-29 06:09:03 +00:00
parent 4dbf00aa23
commit 7981fe2a0f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-29 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
* src/sfnt/sfobjs.c (sfnt_open_font): Use TTAG_OTTO defined in
ttags.h instead of FT_MAKE_TAG( 'O', 'T', 'T', 'O' ).
2008-08-28 Werner Lemberg <wl@gnu.org>
* src/type1/t1load.c (parse_encoding): Protect against infinite

View File

@ -365,7 +365,7 @@
if ( tag != 0x00010000UL &&
tag != TTAG_ttcf &&
tag != FT_MAKE_TAG( 'O', 'T', 'T', 'O' ) &&
tag != TTAG_OTTO &&
tag != TTAG_true &&
tag != 0x00020000UL )
return SFNT_Err_Unknown_File_Format;