From 004d9cc40cbfab9477b1d216f28fd5bf16cda7cb Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Thu, 10 Jan 2008 18:19:34 +0000 Subject: [PATCH] Fix incorrect call to g_slice_free() pmo-trunk-r4015 --- src/modest-mail-operation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-mail-operation.c b/src/modest-mail-operation.c index 36b32f2..7fcad61 100644 --- a/src/modest-mail-operation.c +++ b/src/modest-mail-operation.c @@ -1036,10 +1036,10 @@ modest_mail_operation_save_to_drafts_add_msg_cb(TnyFolder *self, g_object_unref (G_OBJECT(info->drafts)); if (info->msg) g_object_unref (G_OBJECT (info->msg)); - g_slice_free (SaveToDraftsAddMsgInfo, info); modest_mail_operation_notify_end (info->mailop); g_object_unref(info->mailop); + g_slice_free (SaveToDraftsAddMsgInfo, info); } typedef struct -- 1.7.9.5