From 26735390fffaa467bf90041a5c380802602affb6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 9 May 2011 18:00:41 +0200 Subject: playlist_song: fix playlist files in base music directory g_path_get_dirname() returns "." when there is no directory name in the given path. This patch adds a workaround for that. --- src/playlist_song.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/playlist_song.c') diff --git a/src/playlist_song.c b/src/playlist_song.c index 2ad63c913..1a543a0b8 100644 --- a/src/playlist_song.c +++ b/src/playlist_song.c @@ -105,6 +105,13 @@ playlist_check_translate_song(struct song *song, const char *base_uri) } } + if (base_uri != NULL && strcmp(base_uri, ".") == 0) + /* g_path_get_dirname() returns "." when there is no + directory name in the given path; clear that now, + because it would break the database lookup + functions */ + base_uri = NULL; + if (g_path_is_absolute(uri)) { /* XXX fs_charset vs utf8? */ char *prefix = base_uri != NULL -- cgit v1.2.3