aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-08-06 11:55:12 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-08-06 11:55:12 +0800
commit5c45e184a45679817e123abb6efcf937d6f50cdc (patch)
tree04811251e612db47e19d3849207c8faccb49cdf2 /mail/mail-ops.c
parentabafd9de4f2e7f63ec522aae1009a671cb19425c (diff)
downloadgsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar.gz
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar.bz2
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar.lz
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar.xz
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.tar.zst
gsoc2013-evolution-5c45e184a45679817e123abb6efcf937d6f50cdc.zip
Check driver != NULL, if folder_filter freed it already.
2002-08-06 Not Zed <NotZed@Ximian.com> * mail-ops.c (fetch_mail_fetch): Check driver != NULL, if folder_filter freed it already. svn path=/trunk/; revision=17705
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 38225769b7..b4d3788ed5 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -367,8 +367,10 @@ fetch_mail_fetch (struct _mail_msg *mm)
/* we unref this here as it may have more work to do (syncing
folders and whatnot) before we are really done */
/* should this be cancellable too? (i.e. above unregister above) */
- camel_object_unref (CAMEL_OBJECT (fm->driver));
- fm->driver = NULL;
+ if (fm->driver) {
+ camel_object_unref (CAMEL_OBJECT (fm->driver));
+ fm->driver = NULL;
+ }
}
static void