Blame SOURCES/pango-fixes-get-variations-crash.patch

5fabc5
commit ad92e199f221499c19f22dce7a16e7d770ad3ae7
5fabc5
Author: Carsten Pfeiffer <carsten.pfeiffer@gebit.de>
5fabc5
Date:   Fri Aug 10 16:06:20 2018 +0200
5fabc5
5fabc5
    Fix crash in pango_fc_font_key_get_variations() when key is null
5fabc5
5fabc5
diff --git a/pango/pangofc-shape.c b/pango/pangofc-shape.c
5fabc5
index a59ca67c..53269d73 100644
5fabc5
--- a/pango/pangofc-shape.c
5fabc5
+++ b/pango/pangofc-shape.c
5fabc5
@@ -380,8 +380,10 @@ _pango_fc_shape (PangoFont           *font,
5fabc5
 		    fc_font->is_hinted ? ft_face->size->metrics.x_ppem : 0,
5fabc5
 		    fc_font->is_hinted ? ft_face->size->metrics.y_ppem : 0);
5fabc5
 
5fabc5
-  variations = pango_fc_font_key_get_variations (key);
5fabc5
-  if (variations)
5fabc5
+  if (key)
5fabc5
+  {
5fabc5
+    variations = pango_fc_font_key_get_variations (key);
5fabc5
+    if (variations)
5fabc5
     {
5fabc5
       guint n_variations;
5fabc5
       hb_variation_t *hb_variations;
5fabc5
@@ -391,6 +393,7 @@ _pango_fc_shape (PangoFont           *font,
5fabc5
 
5fabc5
       g_free (hb_variations);
5fabc5
     }
5fabc5
+  }
5fabc5
 
5fabc5
   hb_buffer = acquire_buffer (&free_buffer);
5fabc5