aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-08-10 13:24:43 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-08-10 13:24:43 +0800
commitd9ae7c3b78cd10b9fec1ee8bf972cf05e319d968 (patch)
tree7e495f5fd80fc2fecb62971211e2c6c574ad159b /mail/mail-config.c
parent513bfe0292c1721708e83617a8b19db3574060fb (diff)
downloadgsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar.gz
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar.bz2
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar.lz
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar.xz
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.tar.zst
gsoc2013-evolution-d9ae7c3b78cd10b9fec1ee8bf972cf05e319d968.zip
Free dbkey if we don't use it.
2001-08-10 Jeffrey Stedfast <fejj@ximian.com> * mail-config.c (mail_config_get_show_preview): Free dbkey if we don't use it. * folder-browser.c (on_right_click): Added a comment about leaking memory here, but we seem to not even use the 2 strings we strdup...is this code still under construction? * mail-ops.c (mail_send_message): Free the sent_folder_uri at the bottom of the function (ironically enough we were freeing it if we encountered an error but never free'd it on success :-) (get_folderinfo_got): Fixed a memory leak...this one would have gone away once we got rid of the debug g_warning though. svn path=/trunk/; revision=11874
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r--mail/mail-config.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c
index 48507f36b0..e65317edca 100644
--- a/mail/mail-config.c
+++ b/mail/mail-config.c
@@ -920,8 +920,10 @@ mail_config_get_show_preview (const char *uri)
GINT_TO_POINTER (value));
return value;
- } else
+ } else {
+ g_free (dbkey);
return GPOINTER_TO_INT (val);
+ }
}
/* return the default value */