mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
filesrc: g_memmove() is deprecated
https://bugzilla.gnome.org/show_bug.cgi?id=712811
This commit is contained in:
parent
b963319964
commit
45c0831835
1 changed files with 1 additions and 1 deletions
|
@ -630,7 +630,7 @@ gst_file_src_uri_set_uri (GstURIHandler * handler, const gchar * uri,
|
||||||
* form. Correct this.
|
* form. Correct this.
|
||||||
*/
|
*/
|
||||||
if (location[0] == '\\' && location[1] == '\\' && location[2] == '\\')
|
if (location[0] == '\\' && location[1] == '\\' && location[2] == '\\')
|
||||||
g_memmove (location, location + 1, strlen (location + 1) + 1);
|
memmove (location, location + 1, strlen (location + 1) + 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ret = gst_file_src_set_location (src, location);
|
ret = gst_file_src_set_location (src, location);
|
||||||
|
|
Loading…
Reference in a new issue