[evolution-data-server] Bug 630150 - imapx attempts to connect to server when already cancelled
- From: David Woodhouse <dwmw2 src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Bug 630150 - imapx attempts to connect to server when already cancelled
- Date: Mon, 20 Sep 2010 12:34:00 +0000 (UTC)
commit 0ae94ab5726b8d7d185c22d3ecfa48a67ac87ccf
Author: David Woodhouse <David Woodhouse intel com>
Date: Mon Sep 20 13:30:13 2010 +0100
Bug 630150 - imapx attempts to connect to server when already cancelled
camel/providers/imapx/camel-imapx-store.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/camel/providers/imapx/camel-imapx-store.c b/camel/providers/imapx/camel-imapx-store.c
index 687beb0..dd7621a 100644
--- a/camel/providers/imapx/camel-imapx-store.c
+++ b/camel/providers/imapx/camel-imapx-store.c
@@ -236,6 +236,11 @@ camel_imapx_store_get_server (CamelIMAPXStore *istore, const gchar *folder_name,
{
CamelIMAPXServer *server = NULL;
+ if (camel_operation_cancel_check(NULL)) {
+ g_set_error (error, G_IO_ERROR, G_IO_ERROR_CANCELLED,
+ _("Cancelled"));
+ return NULL;
+ }
camel_service_lock (CAMEL_SERVICE (istore), CAMEL_SERVICE_REC_CONNECT_LOCK);
server = camel_imapx_conn_manager_get_connection (istore->con_man, folder_name, error);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]