From: Sergio Villar Senin Date: Wed, 18 Mar 2009 17:15:24 +0000 (+0000) Subject: Fixes FwNULL 15/16 X-Git-Tag: git_migration_finished~257 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=8b29e39e9d8eca23c2e08ba43232a7c6785d6f72;hp=d1db55141f6b645c376ddda0c9f3aef773708670 Fixes FwNULL 15/16 pmo-trunk-r8179 --- 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) {