diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-06 05:17:46 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-06 05:17:46 +0800 |
commit | 4db8df6b4da45e503aea556f7b3342cffa1f6e4c (patch) | |
tree | 1af9acb563d96b10e3b97d010f434365498b0d86 /mail/mail-folder-cache.c | |
parent | f6f3d8d543e149f1e6db5994d8ca5288909d07a3 (diff) | |
download | gsoc2013-evolution-4db8df6b4da45e503aea556f7b3342cffa1f6e4c.tar.gz gsoc2013-evolution-4db8df6b4da45e503aea556f7b3342cffa1f6e4c.tar.zst gsoc2013-evolution-4db8df6b4da45e503aea556f7b3342cffa1f6e4c.zip |
Pull up assertion change from evolution-1-0-branch to allow external
* mail-folder-cache.c (mail_note_store): Pull up assertion change
from evolution-1-0-branch to allow external storages.
svn path=/trunk/; revision=15928
Diffstat (limited to 'mail/mail-folder-cache.c')
-rw-r--r-- | mail/mail-folder-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-folder-cache.c b/mail/mail-folder-cache.c index c43a093a5a..c7bd808369 100644 --- a/mail/mail-folder-cache.c +++ b/mail/mail-folder-cache.c @@ -733,7 +733,7 @@ mail_note_store(CamelStore *store, EvolutionStorage *storage, GNOME_Evolution_St g_assert(CAMEL_IS_STORE(store)); g_assert(pthread_self() == mail_gui_thread); - g_assert(storage != NULL || corba_storage != CORBA_OBJECT_NIL); + g_assert(storage == NULL || corba_storage == CORBA_OBJECT_NIL); LOCK(info_lock); |