[empathy] theme_adium_parse_body: escape text between links



commit cac9e049ba6a99b80aa1247cb33e1853b7bd7010
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Mon Oct 26 14:40:37 2009 +0000

    theme_adium_parse_body: escape text between links

 libempathy-gtk/empathy-theme-adium.c |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c
index 1fc828f..fcf95ca 100644
--- a/libempathy-gtk/empathy-theme-adium.c
+++ b/libempathy-gtk/empathy-theme-adium.c
@@ -226,7 +226,10 @@ theme_adium_parse_body (EmpathyThemeAdium *theme,
 			if (s > last) {
 				/* Append the text between last link (or the
 				 * start of the message) and this link */
-				g_string_append_len (string, text + last, s - last);
+				gchar *str;
+				str = g_markup_escape_text (text + last, s - last);
+				g_string_append (string, str);
+				g_free (str);
 			}
 
 			/* Append the link inside <a href=""></a> tag */
@@ -244,7 +247,10 @@ theme_adium_parse_body (EmpathyThemeAdium *theme,
 
 		if (e < (gint) strlen (text)) {
 			/* Append the text after the last link */
-			g_string_append_len (string, text + e, strlen (text) - e);
+			gchar *str;
+			str = g_markup_escape_text (text + e, strlen (text) - e);
+			g_string_append (string, str);
+			g_free (str);
 		}
 
 		g_free (ret);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]