gst/gsttaglist.c: Use g_value_take_string() instead of the deprecated g_value_set_string_take_ownership().

Original commit message from CVS:
* gst/gsttaglist.c: (gst_tag_merge_strings_with_comma):
Use g_value_take_string() instead of the deprecated
g_value_set_string_take_ownership().
This commit is contained in:
Sebastian Dröge 2008-04-19 16:05:58 +00:00
parent c7a7548481
commit b7462645e5
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-04-19 Sebastian Dröge <slomo@circular-chaos.org>
* gst/gsttaglist.c: (gst_tag_merge_strings_with_comma):
Use g_value_take_string() instead of the deprecated
g_value_set_string_take_ownership().
2008-04-19 Sebastian Dröge <slomo@circular-chaos.org>
* gst/gstregistrybinary.c: (_gst_crc32):

View file

@ -286,7 +286,7 @@ gst_tag_merge_strings_with_comma (GValue * dest, const GValue * src)
}
g_value_init (dest, G_TYPE_STRING);
g_value_set_string_take_ownership (dest, str->str);
g_value_take_string (dest, str->str);
g_string_free (str, FALSE);
}
static GstTagInfo *