aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-01-30 07:59:12 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-30 07:59:12 +0800
commita390d2af9a9faffcaf655f1ba2189d1a85b4ab22 (patch)
tree99a085ecadc7923424ba74393865a4545d58a558
parente63b14506be0265b710eb639574b4432575ae71c (diff)
downloadgsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar.gz
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar.bz2
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar.lz
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar.xz
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.tar.zst
gsoc2013-evolution-a390d2af9a9faffcaf655f1ba2189d1a85b4ab22.zip
Remvoe the stream locking here. I think this was leading to a deadlock
2001-01-30 Not Zed <NotZed@Ximian.com> * camel-remote-store.c (timeout_cb): Remvoe the stream locking here. I think this was leading to a deadlock when a keepalive is being sent, in imap. svn path=/trunk/; revision=7898
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/camel-remote-store.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index fcaa28014e..9e0455b079 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,9 @@
+2001-01-30 Not Zed <NotZed@Ximian.com>
+
+ * camel-remote-store.c (timeout_cb): Remvoe the stream locking
+ here. I think this was leading to a deadlock when a keepalive is
+ being sent, in imap.
+
2001-01-29 Not Zed <NotZed@Ximian.com>
* providers/imap/camel-imap-command.c
diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c
index ef6fe56df0..1c73639d58 100644
--- a/camel/camel-remote-store.c
+++ b/camel/camel-remote-store.c
@@ -197,12 +197,8 @@ timeout_cb (gpointer data)
{
CamelRemoteStore *store = CAMEL_REMOTE_STORE(data);
- CAMEL_REMOTE_STORE_LOCK(store, stream_lock);
-
CRSC (data)->keepalive(store);
- CAMEL_REMOTE_STORE_UNLOCK(store, stream_lock);
-
return TRUE;
}