diff options
author | Milan Crha <mcrha@redhat.com> | 2011-03-02 22:12:02 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:40 +0800 |
commit | 498337e8524e1acf9f9471fc8c54038341035911 (patch) | |
tree | cae6cdd53705523944e7885b8eb194b0e2863e95 /plugins/mail-to-task/mail-to-task.c | |
parent | 623f79123688faa67a52076bd00a1e8885ea8023 (diff) | |
download | gsoc2013-evolution-498337e8524e1acf9f9471fc8c54038341035911.tar.gz gsoc2013-evolution-498337e8524e1acf9f9471fc8c54038341035911.tar.zst gsoc2013-evolution-498337e8524e1acf9f9471fc8c54038341035911.zip |
Do not leak attachments in a mail view
Diffstat (limited to 'plugins/mail-to-task/mail-to-task.c')
-rw-r--r-- | plugins/mail-to-task/mail-to-task.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c index 794badc969..558489578a 100644 --- a/plugins/mail-to-task/mail-to-task.c +++ b/plugins/mail-to-task/mail-to-task.c @@ -384,6 +384,7 @@ set_attachments (ECal *client, ECalComponent *comp, CamelMimeMessage *message) /* XXX Does this take ownership of the list? */ e_cal_component_set_attachment_list (comp, uri_list); + e_attachment_store_remove_all (store); g_object_unref (destination); g_object_unref (store); } |