Fix a memory leak

cairo_ft_apply_variations was leaking the FT_MM_Var struct.
This commit is contained in:
Matthias Clasen 2018-01-04 20:56:59 -05:00
parent a7a0085713
commit 616fb7a9f2

View file

@ -2362,6 +2362,7 @@ skip:
done:
free (coords);
free (current_coords);
free (ft_mm_var);
}
}