From 167aab8ef44d0a601d20f7f77e5e969689582ca8 Mon Sep 17 00:00:00 2001 From: Patrik Flykt Date: Thu, 5 Apr 2012 22:38:39 +0300 Subject: [PATCH] main: Free g_key_file config immediately after use --- src/main.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main.c b/src/main.c index e539e6d..354734d 100644 --- a/src/main.c +++ b/src/main.c @@ -400,8 +400,10 @@ int main(int argc, char *argv[]) __connman_dbus_init(conn); config = load_config(CONFIGDIR "/main.conf"); - - parse_config(config); + if (config != NULL) { + parse_config(config); + g_key_file_free(config); + } __connman_storage_migrate(); __connman_technology_init(); @@ -491,9 +493,6 @@ int main(int argc, char *argv[]) g_main_loop_unref(main_loop); - if (config) - g_key_file_free(config); - if (connman_settings.pref_timeservers != NULL) g_strfreev(connman_settings.pref_timeservers); -- 2.7.4