diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2006-08-17 14:41:06 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-08-17 14:41:06 +0800 |
commit | 31215f089c87da3cad2a371169a91d7fe575e485 (patch) | |
tree | 74490b4a73a06955f0d086ecfb425c16de06d210 /e-util/e-util.c | |
parent | 197472b9c3b90c914189f64b4bc2ca9de8632971 (diff) | |
download | gsoc2013-evolution-31215f089c87da3cad2a371169a91d7fe575e485.tar.gz gsoc2013-evolution-31215f089c87da3cad2a371169a91d7fe575e485.tar.zst gsoc2013-evolution-31215f089c87da3cad2a371169a91d7fe575e485.zip |
Plug some leaks.
2006-08-17 Kjartan Maraas <kmaraas@gnome.org>
* e-util.c: (get_font_options): Plug some leaks.
svn path=/trunk/; revision=32555
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index b2c111589d..4f384bd657 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -1180,6 +1180,9 @@ get_font_options () else cairo_font_options_set_subpixel_order (font_options, CAIRO_SUBPIXEL_ORDER_DEFAULT); } + g_free (antialiasing); + g_free (hinting); + g_free (subpixel_order); g_object_unref (gconf); return font_options; } |