diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-16 22:45:04 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-16 22:45:04 +0800 |
commit | bb64d5dd741646b4e19c488c437b77297798237d (patch) | |
tree | cd87f6c751c369cefeb3977723f9cbaeb210f602 /plugins | |
parent | 85de4c714e534cb6f7d497fe07b762fdde98468a (diff) | |
download | gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.gz gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.bz2 gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.lz gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.xz gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.tar.zst gsoc2013-evolution-bb64d5dd741646b4e19c488c437b77297798237d.zip |
Fixes #360815
svn path=/trunk/; revision=32897
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/groupwise-features/mail-send-options.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index af8f6ab5bc..cd3d66d6b3 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,8 @@ +2006-10-16 Chris Heath <chris@heathens.co.nz> + + * mail-send-options.c (org_gnome_compose_send_options): + Fix memory leak. Fixes bug #360815. + 2006-07-18 Andre Klapper <a9016009@gmx.de> * properties.glade: remove "*" from translation. Fixes bug #331147. diff --git a/plugins/groupwise-features/mail-send-options.c b/plugins/groupwise-features/mail-send-options.c index 0bd494bcd9..d098f9db76 100644 --- a/plugins/groupwise-features/mail-send-options.c +++ b/plugins/groupwise-features/mail-send-options.c @@ -144,16 +144,13 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t) EMsgComposer *comp = (struct _EMsgComposer *)menu.widget ; EAccount *account = NULL; char *temp = NULL; - char *url; account = e_msg_composer_get_preferred_account (comp) ; - url = g_strdup (account->transport->url) ; - temp = strstr (url, "groupwise") ; + temp = strstr (account->transport->url, "groupwise") ; if (!temp) { g_print ("Sorry send options only available for a groupwise account\n") ; return; } - g_free (temp) ; /*disply the send options dialog*/ if (!dialog) { g_print ("New dialog\n\n") ; |