aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-03-01 22:53:15 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:40 +0800
commit0f01c083520ddcdce54ed640621dbe8c5dcad1e4 (patch)
tree3d4bb12d89d615434280a394ffec350af0b9025a /modules/mail
parenta244743d9e671600dfb7f7ab342d54724654f1aa (diff)
downloadgsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar.gz
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar.bz2
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar.lz
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar.xz
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.tar.zst
gsoc2013-evolution-0f01c083520ddcdce54ed640621dbe8c5dcad1e4.zip
Bug #642093 - Frees message attachment content on Reply
Diffstat (limited to 'modules/mail')
-rw-r--r--modules/mail/e-mail-attachment-handler.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/mail/e-mail-attachment-handler.c b/modules/mail/e-mail-attachment-handler.c
index c2b0cf5460..7f51274a5c 100644
--- a/modules/mail/e-mail-attachment-handler.c
+++ b/modules/mail/e-mail-attachment-handler.c
@@ -115,6 +115,9 @@ mail_attachment_handler_reply_all (GtkAction *action,
shell_settings = e_shell_get_shell_settings (priv->shell);
style = e_shell_settings_get_int (shell_settings, property_name);
+ /* em_utils_reply_to_message() unrefs 'message', thus ref it here */
+ g_object_ref (wrapper);
+
em_utils_reply_to_message (
priv->shell, NULL, NULL, CAMEL_MIME_MESSAGE (wrapper),
E_MAIL_REPLY_TO_ALL, style, NULL);
@@ -151,6 +154,9 @@ mail_attachment_handler_reply_sender (GtkAction *action,
shell_settings = e_shell_get_shell_settings (priv->shell);
style = e_shell_settings_get_int (shell_settings, property_name);
+ /* em_utils_reply_to_message() unrefs 'message', thus ref it here */
+ g_object_ref (wrapper);
+
em_utils_reply_to_message (
priv->shell, NULL, NULL, CAMEL_MIME_MESSAGE (wrapper),
E_MAIL_REPLY_TO_SENDER, style, NULL);