summaryrefslogtreecommitdiff
path: root/pango/opentype/ftxgpos.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/opentype/ftxgpos.c')
-rw-r--r--pango/opentype/ftxgpos.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pango/opentype/ftxgpos.c b/pango/opentype/ftxgpos.c
index 10267e0a..7a17e1cc 100644
--- a/pango/opentype/ftxgpos.c
+++ b/pango/opentype/ftxgpos.c
@@ -4020,9 +4020,6 @@
gdef = gpos->gdef;
- if ( ALLOC_ARRAY( classes, cpf2->MaxContextLength, FT_UShort ) )
- return error;
-
if ( CHECK_Property( gdef, in->string[in->pos], flags, &property ) )
return error;
@@ -4032,7 +4029,10 @@
error = Coverage_Index( &cpf2->Coverage, in->string[in->pos], &index );
if ( error )
- goto End;
+ return error;
+
+ if ( ALLOC_ARRAY( classes, cpf2->MaxContextLength, FT_UShort ) )
+ return error;
error = Get_Class( &cpf2->ClassDef, in->string[in->pos],
&classes[0], NULL );