diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-ops.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0a6f1293c8..856d75798c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-07-25 Peter Williams <peterw@helixcode.com> + + * mail-ops.c (reply): Check for the case of fb->mail_display-> + current_message = NULL, which shouldn't happen, but has happened + to me. + 2000-07-25 Dan Winship <danw@helixcode.com> * message-thread.c (group_root_set): Don't group together messages diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5fa1f0953b..9602d8dcd6 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -635,7 +635,8 @@ reply (FolderBrowser *fb, gboolean to_all) EMsgComposer *composer; struct post_send_data *psd; - if (!check_configured () || !fb->message_list->cursor_uid) + if (!check_configured () || !fb->message_list->cursor_uid || + !fb->mail_display->current_message) return; psd = g_new (struct post_send_data, 1); |