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:
Vivia Nikolaidou 2015-08-18 13:50:17 +03:00 committed by Sebastian Dröge
parent a3b24f0241
commit cca823b490

View file

@ -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);
}