mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 17:05:52 +00:00
tools: gst-play: Use g_build_filename instead of g_strconcat
When running gst-play against a directory name, and suffix the path with a directory separator (e.g. tab completion), gst-play was printing two directory separators in a row. g_build_filename fixes this, and additionally allows for both '/' and '\' as separators on Windows.
This commit is contained in:
parent
a3b24f0241
commit
cca823b490
1 changed files with 1 additions and 1 deletions
|
@ -641,7 +641,7 @@ add_to_playlist (GPtrArray * playlist, const gchar * filename)
|
|||
while ((entry = g_dir_read_name (dir))) {
|
||||
gchar *path;
|
||||
|
||||
path = g_strconcat (filename, G_DIR_SEPARATOR_S, entry, NULL);
|
||||
path = g_build_filename (filename, entry, NULL);
|
||||
files = g_list_insert_sorted (files, path, compare);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue