diff options
author | zhuyaliang <[email protected]> | 2019-06-10 18:03:27 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-14 12:05:04 +0200 |
commit | 8f247df3e36d8c34baa31f1448db67c9028b2d9d (patch) | |
tree | 16a20056ebc7762b9ae8a0cc1b6f822d47f71eb6 /capplets/time-admin/src/main.c | |
parent | 45dcffe232547b0a56f91efa9b6de0e133c74aa3 (diff) | |
download | mate-control-center-8f247df3e36d8c34baa31f1448db67c9028b2d9d.tar.bz2 mate-control-center-8f247df3e36d8c34baa31f1448db67c9028b2d9d.tar.xz |
Memory leak: g_error_free(error);
Diffstat (limited to 'capplets/time-admin/src/main.c')
-rw-r--r-- | capplets/time-admin/src/main.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/capplets/time-admin/src/main.c b/capplets/time-admin/src/main.c index 5952b71a..a29cb89e 100644 --- a/capplets/time-admin/src/main.c +++ b/capplets/time-admin/src/main.c @@ -381,7 +381,7 @@ static gboolean InitDbusProxy(TimeAdmin *ta) if(ta->Connection == NULL) { MessageReport(_("g_bus_get_sync"),error->message,ERROR); - return FALSE; + goto EXIT; } ta->proxy = g_dbus_proxy_new_sync (ta->Connection, G_DBUS_PROXY_FLAGS_NONE, @@ -394,16 +394,19 @@ static gboolean InitDbusProxy(TimeAdmin *ta) if(ta->proxy == NULL) { MessageReport(_("g_bus_proxy_new"),error->message,ERROR); - return FALSE; + goto EXIT; } return TRUE; +EXIT: + g_error_free(error); + return FALSE; } int main(int argc, char **argv) { TimeAdmin ta; - bindtextdomain (PACKAGE, LOCALEDIR); + bindtextdomain (PACKAGE,MATELOCALEDIR); textdomain (PACKAGE); bind_textdomain_codeset (GETTEXT_PACKAGE_TIMEZONES, "UTF-8"); |