aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-01-24 20:43:12 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-01-24 20:43:12 +0800
commitb1140798c3b9d8fcfb7467108d411b7370ba1ec3 (patch)
treef1c654a33427ce7f3408b4c305a7733761651849 /composer/e-msg-composer.c
parentde2f61c783170d15f685c09d6ed5ee6a557baab9 (diff)
downloadgsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar.gz
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar.bz2
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar.lz
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar.xz
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.tar.zst
gsoc2013-evolution-b1140798c3b9d8fcfb7467108d411b7370ba1ec3.zip
** Fixes bug #509124
2008-01-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #509124 * composer/e-msg-composer.c (e_msg_composer_get_message_print), (e_msg_composer_get_message_draft): Check result of build_message() for NULL before proceeding. svn path=/trunk/; revision=34883
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r--composer/e-msg-composer.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index fccbf60e74..f0bb36633f 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -5276,6 +5276,9 @@ e_msg_composer_get_message_print (EMsgComposer *composer, gboolean save_html_obj
GString *flags;
msg = build_message (composer, save_html_object_data);
+ if (msg == NULL)
+ return NULL;
+
temp_composer = e_msg_composer_new_with_message (msg);
camel_object_unref (msg);
@@ -5302,8 +5305,10 @@ e_msg_composer_get_message_print (EMsgComposer *composer, gboolean save_html_obj
temp_composer->priv->smime_encrypt = FALSE;
msg = build_message (temp_composer, save_html_object_data);
- camel_medium_set_header (CAMEL_MEDIUM (msg),
- "X-Evolution-Format", flags->str);
+ if (msg != NULL)
+ camel_medium_set_header (
+ CAMEL_MEDIUM (msg),
+ "X-Evolution-Format", flags->str);
e_msg_composer_delete (temp_composer);
g_string_free (flags, TRUE);
@@ -5335,6 +5340,8 @@ e_msg_composer_get_message_draft (EMsgComposer *composer)
p->smime_encrypt = FALSE;
msg = build_message (composer, TRUE);
+ if (msg == NULL)
+ return NULL;
p->send_html = old_send_html;
p->pgp_sign = old_flags[0];