diff options
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 6 |
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 |