From 4dd70da1f89f70f1e86ba23825f02a2e8c03bb7b Mon Sep 17 00:00:00 2001 From: Alberto Garcia Date: Mon, 12 Nov 2007 17:03:53 +0000 Subject: [PATCH] Check if a GError is NULL before copying it pmo-trunk-r3715 --- 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 2e480d6..3a1384f 100644 --- a/src/modest-mail-operation.c +++ b/src/modest-mail-operation.c @@ -871,7 +871,7 @@ modest_mail_operation_save_to_drafts_add_msg_cb(TnyFolder *self, g_error_free(priv->error); } - priv->error = g_error_copy(err); + priv->error = (err == NULL) ? NULL : g_error_copy(err); if ((!priv->error) && (info->draft_msg != NULL)) { TnyHeader *header = tny_msg_get_header (info->draft_msg); -- 1.7.9.5