diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-07-26 03:14:03 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-07-26 03:14:03 +0800 |
commit | 43ef719142fe37dc8aa8c9ae32d8f44002036aaf (patch) | |
tree | 846da72b2d3afb1d0180bbbdb3efd5bba934414c /mail/mail-ops.c | |
parent | dffee3727463f7b84cd97f650cc3adc1b36aa81d (diff) | |
download | gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar.gz gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar.bz2 gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar.lz gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar.xz gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.tar.zst gsoc2013-evolution-43ef719142fe37dc8aa8c9ae32d8f44002036aaf.zip |
Fix crash on NULL current_message when replying.
svn path=/trunk/; revision=4319
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |