forked from minhngoc25a/freetype2
* src/sfnt/sfobjs.c (sfnt_load_face): `psnames_error' is only needed
if TT_CONFIG_OPTION_POSTSCRIPT_NAMES is defined.
This commit is contained in:
parent
d03d856d95
commit
ce1bad0381
|
@ -1,3 +1,8 @@
|
|||
2008-10-02 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/sfnt/sfobjs.c (sfnt_load_face): `psnames_error' is only needed
|
||||
if TT_CONFIG_OPTION_POSTSCRIPT_NAMES is defined.
|
||||
|
||||
2008-10-01 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/truetype/ttobjs.c (tt_face_done), src/cff/cffobjs.c
|
||||
|
|
|
@ -506,7 +506,10 @@
|
|||
FT_Int num_params,
|
||||
FT_Parameter* params )
|
||||
{
|
||||
FT_Error error, psnames_error;
|
||||
FT_Error error;
|
||||
#ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES
|
||||
FT_Error psnames_error;
|
||||
#endif
|
||||
FT_Bool has_outline;
|
||||
FT_Bool is_apple_sbit;
|
||||
|
||||
|
@ -581,7 +584,10 @@
|
|||
/* don't check for errors */
|
||||
LOAD_( name );
|
||||
LOAD_( post );
|
||||
|
||||
#ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES
|
||||
psnames_error = error;
|
||||
#endif
|
||||
|
||||
/* do not load the metrics headers and tables if this is an Apple */
|
||||
/* sbit font file */
|
||||
|
|
Loading…
Reference in New Issue