From: Behdad Esfahbod Date: Thu, 10 Aug 2017 05:05:08 +0000 (-0700) Subject: [ft] Fix theoretical leak X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac8c4e56d8b8c2e7a8f4802f83deb935bd6bbbd3;p=platform%2Fupstream%2FlibHarfBuzzSharp.git [ft] Fix theoretical leak --- diff --git a/src/hb-ft.cc b/src/hb-ft.cc index 2a1868d..492992e 100644 --- a/src/hb-ft.cc +++ b/src/hb-ft.cc @@ -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