From ce1bad0381c8ae0bff2ea54d5101808779e1b498 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Wed, 1 Oct 2008 22:46:26 +0000 Subject: [PATCH] * src/sfnt/sfobjs.c (sfnt_load_face): `psnames_error' is only needed if TT_CONFIG_OPTION_POSTSCRIPT_NAMES is defined. --- ChangeLog | 5 +++++ src/sfnt/sfobjs.c | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 973371dd..16625368 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-02 Werner Lemberg + + * 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 * src/truetype/ttobjs.c (tt_face_done), src/cff/cffobjs.c diff --git a/src/sfnt/sfobjs.c b/src/sfnt/sfobjs.c index 4e88f8a5..0d446388 100644 --- a/src/sfnt/sfobjs.c +++ b/src/sfnt/sfobjs.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 */