From bdf4b3a33a7e2d35541422059c090c3995e95420 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 9 Apr 2012 12:09:59 -0400 Subject: [PATCH] ClutterText: Fix length passed to clutter_text_buffer_set_text() clutter_text_buffer_set_text() expects a char count, not a byte count, so pass -1 rather than using strlen. https://bugzilla.gnome.org/show_bug.cgi?id=673783 --- clutter/clutter-text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-text.c b/clutter/clutter-text.c index 6e279b6a1..b799217c2 100644 --- a/clutter/clutter-text.c +++ b/clutter/clutter-text.c @@ -1120,7 +1120,7 @@ clutter_text_set_markup_internal (ClutterText *self, if (text) { - clutter_text_buffer_set_text (get_buffer (self), text, strlen (text)); + clutter_text_buffer_set_text (get_buffer (self), text, -1); g_free (text); }