diff options
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-util.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index ad8aaee230..35d4c20e04 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2006-08-17 Kjartan Maraas <kmaraas@gnome.org> + + * e-util.c: (get_font_options): Plug some leaks. + 2006-07-22 Harish Krishnaswamy <kharish@novell.com> * e-util.c: (get_font_options): Handle cases when the 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; } |