aboutsummaryrefslogtreecommitdiffstats
path: root/mail/component-factory.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-03-26 01:03:58 +0800
committerDan Winship <danw@src.gnome.org>2001-03-26 01:03:58 +0800
commit82a856a14dc2fdbc1f00ea397c25199c216e0a9f (patch)
treecb6bdefec40a08bb3768c53489f33ec0f5ca776e /mail/component-factory.c
parent768085542752167f63ed51a614dd884d4d72fb21 (diff)
downloadgsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar.gz
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar.bz2
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar.lz
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar.xz
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.tar.zst
gsoc2013-evolution-82a856a14dc2fdbc1f00ea397c25199c216e0a9f.zip
Fix a bug in this that probably would have been noticed sooner if ETree
* component-factory.c (unref_standard_folders): Fix a bug in this that probably would have been noticed sooner if ETree hadn't always made the mailer crash before you got here. :-) svn path=/trunk/; revision=8930
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r--mail/component-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c
index c6fb7ec667..d3a88ca197 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -171,7 +171,7 @@ unref_standard_folders (void)
for (i = 0; i < sizeof (standard_folders) / sizeof (standard_folders[0]); i++) {
if (standard_folders[i].folder)
- camel_object_unref (CAMEL_OBJECT (standard_folders[i].folder));
+ camel_object_unref (CAMEL_OBJECT (*standard_folders[i].folder));
}
}