diff options
Diffstat (limited to 'lib/widgets/ephy-ellipsizing-label.c')
-rw-r--r-- | lib/widgets/ephy-ellipsizing-label.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-ellipsizing-label.c b/lib/widgets/ephy-ellipsizing-label.c index 13f911078..852d9e182 100644 --- a/lib/widgets/ephy-ellipsizing-label.c +++ b/lib/widgets/ephy-ellipsizing-label.c @@ -331,8 +331,8 @@ ellipsize_string (const char *string, g_utf8_strlen (string, -1)); } - result = str->str; - g_string_free (str, FALSE); + result = g_string_free (str, FALSE); + return result; } |