From 8b29e39e9d8eca23c2e08ba43232a7c6785d6f72 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Wed, 18 Mar 2009 17:15:24 +0000 Subject: [PATCH] Fixes FwNULL 15/16 pmo-trunk-r8179 --- src/modest-text-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index 614db37..4203b03 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -1016,7 +1016,7 @@ modest_text_utils_quote_html (const gchar *text, } quote_html_add_to_gstring (result_string, cite); quoted_text = g_string_new (""); - quoted_text = modest_text_utils_quote_body (quoted_text, text, ">", limit); + quoted_text = modest_text_utils_quote_body (quoted_text, (text) ? text : "", ">", limit); quote_html_add_to_gstring (result_string, quoted_text->str); g_string_free (quoted_text, TRUE); if (attachments) { -- 1.7.9.5