aboutsummaryrefslogtreecommitdiff
path: root/freetype/src/base/ftpfr.c
diff options
context:
space:
mode:
Diffstat (limited to 'freetype/src/base/ftpfr.c')
-rw-r--r--freetype/src/base/ftpfr.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/freetype/src/base/ftpfr.c b/freetype/src/base/ftpfr.c
index 1f2e488b3..3b2ee3642 100644
--- a/freetype/src/base/ftpfr.c
+++ b/freetype/src/base/ftpfr.c
@@ -4,7 +4,7 @@
/* */
/* FreeType API for accessing PFR-specific data (body). */
/* */
-/* Copyright 2002, 2003, 2004, 2008 by */
+/* Copyright 2002, 2003, 2004, 2008, 2010 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -24,10 +24,11 @@
static FT_Service_PfrMetrics
ft_pfr_check( FT_Face face )
{
- FT_Service_PfrMetrics service;
+ FT_Service_PfrMetrics service = NULL;
- FT_FACE_LOOKUP_SERVICE( face, service, PFR_METRICS );
+ if ( face )
+ FT_FACE_LOOKUP_SERVICE( face, service, PFR_METRICS );
return service;
}