mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +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.
|
||||
*/
|
||||
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
|
||||
|
||||
ret = gst_file_src_set_location (src, location);
|
||||
|
|
Loading…
Reference in a new issue