diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-08-05 18:23:17 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-08-05 18:23:17 +0800 |
commit | 5dcf8ff37b4cdbdb57f4cc865cac04d8d5ad3c43 (patch) | |
tree | b8e5d033a588384a54889bd35d0f2343096ce47e /addressbook/gui | |
parent | 2e4da90ebf8b5f787f0b855d65bbae707cc76b7c (diff) | |
download | gsoc2013-evolution-5dcf8ff37b4cdbdb57f4cc865cac04d8d5ad3c43.tar.gz gsoc2013-evolution-5dcf8ff37b4cdbdb57f4cc865cac04d8d5ad3c43.tar.zst gsoc2013-evolution-5dcf8ff37b4cdbdb57f4cc865cac04d8d5ad3c43.zip |
Vulnerability patch submitted by "Sitic Vulnerability Advisory <sitic@pts.se>"
svn path=/trunk/; revision=30002
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index 95e0893b1b..8613d92e3e 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -353,7 +353,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) accum_multival_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO, YAHOO_ICON, 0); if (accum->len > 0) - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); @@ -368,7 +368,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) if (accum->len > 0) { start_block (html_stream, _("work")); - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); } @@ -383,7 +383,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) if (accum->len > 0) { start_block (html_stream, _("personal")); - gtk_html_stream_printf (html_stream, accum->str); + gtk_html_stream_printf (html_stream, "%s", accum->str); end_block (html_stream); } |