aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-12-12 08:05:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-12-12 08:05:00 +0800
commit76d019ea9881ffdf0071582e47b29e7dc27c81fb (patch)
tree086ef9a731a814fc45cd09c0e13753fa8322aaa2 /mail/message-list.c
parent45f6a4c8b604c5f2108559c0f72caba0ca3d5200 (diff)
downloadgsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar.gz
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar.bz2
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar.lz
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar.xz
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.tar.zst
gsoc2013-evolution-76d019ea9881ffdf0071582e47b29e7dc27c81fb.zip
put the style in .evolution.
2003-12-12 Not Zed <NotZed@Ximian.com> * mail-config.c (config_write_style): put the style in .evolution. ** See bug #52023. * message-list.c (message_list_select_uid): noop if we've been destroyed (foldre == NULL). svn path=/trunk/; revision=23932
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index c1fb66c39e..02ebc4a853 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -522,6 +522,9 @@ message_list_select_uid (MessageList *message_list, const char *uid)
{
ETreePath node;
+ if (message_list->folder == NULL)
+ return;
+
if (message_list->regen) {
g_free(message_list->pending_select_uid);
message_list->pending_select_uid = g_strdup(uid);