diff options
author | Szunti <Szunti@users.noreply.github.com> | 2020-12-27 00:44:14 +0100 |
---|---|---|
committer | Szunti <Szunti@users.noreply.github.com> | 2021-01-16 16:07:19 +0100 |
commit | 7555012e7dbba9f3d6ecede432126508fbf0582f (patch) | |
tree | 51af13fb9dead388dd4d959c973aaf5cc3e811e2 /tests/test-font.c | |
parent | fb7eda6ed6ca6f8c6f8e4140374c5e980c00e5aa (diff) | |
download | pango-7555012e7dbba9f3d6ecede432126508fbf0582f.tar.gz |
Fix leaks found by asan
Diffstat (limited to 'tests/test-font.c')
-rw-r--r-- | tests/test-font.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test-font.c b/tests/test-font.c index 486504f9..d02c7932 100644 --- a/tests/test-font.c +++ b/tests/test-font.c @@ -164,9 +164,12 @@ test_extents (void) PangoGlyphString *glyphs; PangoRectangle ink, log; PangoContext *context; + PangoFontDescription *desc; context = pango_font_map_create_context (pango_cairo_font_map_get_default ()); - pango_context_set_font_description (context, pango_font_description_from_string ("Cantarell 11")); + desc = pango_font_description_from_string("Cantarell 11"); + pango_context_set_font_description (context, desc); + pango_font_description_free (desc); items = pango_itemize (context, str, 0, strlen (str), NULL, NULL); glyphs = pango_glyph_string_new (); |