diff options
author | Not Zed <NotZed@Ximian.com> | 2002-07-22 17:22:17 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-07-22 17:22:17 +0800 |
commit | ed7236d35139fc2a65da767f3cb5d7d6fc73eaa3 (patch) | |
tree | 28503849707882de8458611af2d80ee40306a968 /mail/message-list.c | |
parent | 2d77ed3f0dd15fa64ff4269643633c77371e7848 (diff) | |
download | gsoc2013-evolution-ed7236d35139fc2a65da767f3cb5d7d6fc73eaa3.tar.gz gsoc2013-evolution-ed7236d35139fc2a65da767f3cb5d7d6fc73eaa3.tar.zst gsoc2013-evolution-ed7236d35139fc2a65da767f3cb5d7d6fc73eaa3.zip |
Remove the assert, and always copy over the threadtree which represents
2002-07-22 Not Zed <NotZed@Ximian.com>
* message-list.c (regen_list_regened): Remove the assert, and
always copy over the threadtree which represents the current view,
unreffing the old one if set. For #28021. Haven't tested this a
lot, but i guess it cant be worse than what is there.
svn path=/trunk/; revision=17524
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 3175c4e5b1..ddfbe0b465 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2691,11 +2691,10 @@ regen_list_regened (struct _mail_msg *mm) if (m->dotree) { build_tree (m->ml, m->tree, m->changes); - g_assert(m->ml->thread_tree == NULL || m->ml->thread_tree == m->tree); - if (m->ml->thread_tree == NULL) { - m->ml->thread_tree = m->tree; - m->tree = NULL; - } + if (m->ml->thread_tree) + camel_folder_thread_messages_unref(m->ml->thread_tree); + m->ml->thread_tree = m->tree; + m->tree = NULL; } else build_flat (m->ml, m->summary, m->changes); |