[Xfce4-commits] <parole:0.5> Fix loading of playlists with relative paths (Fixes #10436) Thanks to Alexander De Sousa for the patch

Simon Steinbeiss noreply at xfce.org
Mon Oct 28 11:24:01 CET 2013


Updating branch refs/heads/0.5
         to 74815a4b1e1cce4a81b0d29ec9c7e8eac4682b6e (commit)
       from 9e27aa0ba60d02f98609abcaa722260f927fae72 (commit)

commit 74815a4b1e1cce4a81b0d29ec9c7e8eac4682b6e
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date:   Mon Oct 28 11:23:47 2013 +0100

    Fix loading of playlists with relative paths (Fixes #10436)
    Thanks to Alexander De Sousa for the patch

 src/misc/parole-pl-parser.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/misc/parole-pl-parser.c b/src/misc/parole-pl-parser.c
index 9f9e98a..71951d7 100644
--- a/src/misc/parole-pl-parser.c
+++ b/src/misc/parole-pl-parser.c
@@ -375,7 +375,7 @@ parole_pl_parser_parse_m3u (const gchar *filename)
         }
 
         else {
-	        pl_filename = g_strjoin("", path, lines[i], NULL);
+	        pl_filename = g_strjoin("/", path, lines[i], NULL);
         }
 	    
 	    list = g_slist_append (list, parole_file_new (pl_filename));


More information about the Xfce4-commits mailing list