From 16217e5f22127cbe3aed6375b446629228098b90 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Wed, 1 Apr 2015 13:13:56 +0200 Subject: [PATCH] * src/autofit/afhints.c (af_glyph_hints_done): Fix minor thinko. --- ChangeLog | 4 ++++ src/autofit/afhints.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ef7c1318d..97bf29368 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-04-01 Werner Lemberg + + * src/autofit/afhints.c (af_glyph_hints_done): Fix minor thinko. + 2015-03-29 Werner Lemberg [cff] Fix Savannah bug #44629. diff --git a/src/autofit/afhints.c b/src/autofit/afhints.c index 318607730..ab32dd0f5 100644 --- a/src/autofit/afhints.c +++ b/src/autofit/afhints.c @@ -533,13 +533,15 @@ FT_LOCAL_DEF( void ) af_glyph_hints_done( AF_GlyphHints hints ) { - FT_Memory memory = hints->memory; + FT_Memory memory; int dim; if ( !( hints && hints->memory ) ) return; + memory = hints->memory; + /* * note that we don't need to free the segment and edge * buffers since they are really within the hints->points array