Use g_value_take_string to avoid redundant invoking g_free.

This commit is contained in:
Hiroyuki Ikezoe 2009-12-21 15:34:06 +09:00 committed by Tristan Van Berkom
parent 7ef003f7d4
commit 61a73b3df6

View File

@ -2808,8 +2808,7 @@ gtk_widget_get_property (GObject *object,
if (escaped && !pango_parse_markup (escaped, -1, 0, NULL, &text, NULL, NULL))
g_assert (NULL == text); /* text should still be NULL in case of markup errors */
g_value_set_string (value, text);
g_free (text);
g_value_take_string (value, text);
}
break;
case PROP_TOOLTIP_MARKUP: