Commit 57f5e873 authored by Max Kellermann's avatar Max Kellermann

mapper: don't return database path with leading slash

Due to an off-by-one bug in map_fs_to_utf8(), the function returned database paths with a leading slash.
parent 7487f981
......@@ -110,7 +110,7 @@ map_fs_to_utf8(const char *path_fs, char *buffer)
if (strncmp(path_fs, music_dir, music_dir_length) == 0 &&
path_fs[music_dir_length] == '/')
/* remove musicDir prefix */
path_fs += music_dir_length;
path_fs += music_dir_length + 1;
else if (path_fs[0] == '/')
/* not within musicDir */
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment