* Remove wrong initialization in `ft_lookup_PS_in_sfnt_stream'
This commit is contained in:
parent
45489589ad
commit
72eb270ac7
|
@ -1,3 +1,8 @@
|
|||
2008-10-04 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
* src/base/ftobjs.c (ft_lookup_PS_in_sfnt_stream): Remove wrong
|
||||
initialization of *is_sfnt_cid.
|
||||
|
||||
2008-10-04 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftobjs.c (open_face_PS_from_sfnt_stream): Remove compiler
|
||||
|
|
|
@ -1339,11 +1339,10 @@
|
|||
|
||||
*offset = 0;
|
||||
*length = 0;
|
||||
|
||||
*is_sfnt_cid = TRUE;
|
||||
/* TODO: support for sfnt-wrapped PS/CID in TTC format */
|
||||
*is_sfnt_cid = FALSE;
|
||||
|
||||
/* TODO: support for sfnt-wrapped PS/CID in TTC format */
|
||||
|
||||
/* version check for 'typ1' (should be ignored?) */
|
||||
if ( FT_READ_ULONG( tag ) )
|
||||
return error;
|
||||
|
|
Loading…
Reference in New Issue