mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
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:
parent
c7a7548481
commit
b7462645e5
2 changed files with 7 additions and 1 deletions
|
@ -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):
|
||||
|
|
|
@ -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 *
|
||||
|
|
Loading…
Reference in a new issue