Dont do anything if we're destroyed #13021.

2001-10-23    <NotZed@Ximian.com>

        * message-list.c (regen_list_regened): Dont do anything if we're
        destroyed #13021.

svn path=/trunk/; revision=13963
This commit is contained in:
3
2001-10-23 22:10:14 +00:00
committed by Michael Zucci
parent e6034e7e2d
commit 36894c7adc
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2001-10-23 <NotZed@Ximian.com> 2001-10-23 <NotZed@Ximian.com>
* message-list.c (regen_list_regened): Dont do anything if we're
destroyed #13021.
* mail-mt.c (mail_user_message): * mail-mt.c (mail_user_message):
(mail_get_password): Removed, all functionality moved to (mail_get_password): Removed, all functionality moved to
mail-session. mail-session.

View File

@ -2450,6 +2450,9 @@ static void
regen_list_regened (struct _mail_msg *mm) regen_list_regened (struct _mail_msg *mm)
{ {
struct _regen_list_msg *m = (struct _regen_list_msg *)mm; struct _regen_list_msg *m = (struct _regen_list_msg *)mm;
if (GTK_OBJECT_DESTROYED(m->ml))
return;
if (m->summary == NULL) if (m->summary == NULL)
return; return;