fixed leak

This commit is contained in:
Michiharu Ariza 2018-10-11 11:55:55 -07:00
parent ce6639cd27
commit ca37172ee3
1 changed files with 3 additions and 1 deletions

View File

@ -49,6 +49,8 @@ test_extents_cff1 (void)
g_assert_cmpint (extents.width, ==, 381); g_assert_cmpint (extents.width, ==, 381);
g_assert_cmpint (extents.height, ==, -510); g_assert_cmpint (extents.height, ==, -510);
hb_font_destroy (font);
hb_face_t *face_j = hb_subset_test_open_font ("fonts/SourceHanSans-Regular.41,3041,4C2E.otf"); hb_face_t *face_j = hb_subset_test_open_font ("fonts/SourceHanSans-Regular.41,3041,4C2E.otf");
g_assert (face_j); g_assert (face_j);
hb_font_t *font_j = hb_font_create (face_j); hb_font_t *font_j = hb_font_create (face_j);
@ -64,7 +66,7 @@ test_extents_cff1 (void)
g_assert_cmpint (extents.width, ==, 920); g_assert_cmpint (extents.width, ==, 920);
g_assert_cmpint (extents.height, ==, -907); g_assert_cmpint (extents.height, ==, -907);
hb_font_destroy (font); hb_font_destroy (font_j);
} }
static void static void