[ft] Fix theoretical leak

This commit is contained in:
Behdad Esfahbod 2017-08-09 22:05:08 -07:00
parent 5a33057576
commit ac8c4e56d8
1 changed files with 2 additions and 2 deletions

View File

@ -632,9 +632,9 @@ hb_ft_font_create (FT_Face ft_face,
hb_font_set_var_coords_normalized (font, coords, mm_var->num_axis);
}
free (coords);
free (ft_coords);
}
free (coords);
free (ft_coords);
free (mm_var);
}
#endif