From 730364e4a3eca45a9fa71ed4d4d8f681edc8fd5d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 30 Jan 2009 13:47:52 +0100 Subject: mapper: ignore duplicate slashes in playlists When there are duplicate slashes in the song paths, eliminate them; example: /var/lib/mpd/music//foo.mp3 becomes: /var/lib/mpd/music/foo.mp3 The slash is only detected at the border between the music_directory and the local part. --- src/mapper.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mapper.c b/src/mapper.c index b7ddda209..5f7dca324 100644 --- a/src/mapper.c +++ b/src/mapper.c @@ -161,6 +161,9 @@ map_fs_to_utf8(const char *path_fs, char *buffer) /* not within musicDir */ return NULL; + while (path_fs[0] == G_DIR_SEPARATOR) + ++path_fs; + return fs_charset_to_utf8(buffer, path_fs); } -- cgit v1.2.3