From ad5aae2c6bfdd7c4eb19dd8aac3e921084cb333c Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 6 Feb 2011 10:50:39 +0200 Subject: [PATCH] * mu-runtime.c: fix small memleak --- src/mu-runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mu-runtime.c b/src/mu-runtime.c index 32fd958b..bc9f8390 100644 --- a/src/mu-runtime.c +++ b/src/mu-runtime.c @@ -144,7 +144,8 @@ runtime_free (void) { g_free (_data->_xapian_dir); g_free (_data->_muhome); - + g_free (_data->_bookmarks_file); + mu_config_destroy (_data->_config); mu_log_uninit();