From 61d5de94447c792234d2b34fbc26290362adbce1 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Tue, 17 Jul 2007 15:51:27 +0000 Subject: [PATCH] * src/modest-mail-operation.c: * Now it checks if there's no account already, and then cancel cannot be run. Avoids a crash. pmo-trunk-r2749 --- src/modest-mail-operation.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modest-mail-operation.c b/src/modest-mail-operation.c index 19274c6..70b0bdb 100644 --- a/src/modest-mail-operation.c +++ b/src/modest-mail-operation.c @@ -417,7 +417,8 @@ modest_mail_operation_cancel (ModestMailOperation *self) /* Cancel the mail operation. We need to wrap it between this start/stop operations to allow following calls to the account */ - tny_account_cancel (priv->account); + if (priv->account) + tny_account_cancel (priv->account); return canceled; } -- 1.7.9.5