diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/default-mailer/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/default-mailer/default-mailer.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/default-mailer/ChangeLog b/plugins/default-mailer/ChangeLog index c4258a1f22..1620c006e1 100644 --- a/plugins/default-mailer/ChangeLog +++ b/plugins/default-mailer/ChangeLog @@ -1,3 +1,8 @@ +2006-02-27 Srinivasa Ragavan <sragavan@novell.com> + + * default-mailer.c (org_gnome_default_mailer_check_default): Used + gconf_value_free to free a GConfValue instead of a g_free. + 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Fix make-clean issues. diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c index 83f71ed2df..d8d9c1b445 100644 --- a/plugins/default-mailer/default-mailer.c +++ b/plugins/default-mailer/default-mailer.c @@ -47,7 +47,7 @@ org_gnome_default_mailer_check_default (EPlugin *ep, ESEventTargetUpgrade *targe is_key = gconf_client_get(client, GCONF_KEY_CHECKDEFAULT, NULL); if(!is_key) gconf_client_set_bool(client, GCONF_KEY_CHECKDEFAULT, TRUE, NULL); - g_free(is_key); + gconf_value_free (is_key); /* Check whether we're supposed to check whether or not we are the default mailer */ if(gconf_client_get_bool(client, GCONF_KEY_CHECKDEFAULT, NULL)) { |