# HG changeset patch # User albeu # Date 1026014877 0 # Node ID 5790a25765057ecd0c27cf445c736c7a154e59d2 # Parent f8e25756a5ece37ab95ac48d04138b723a5ebf4a 10L don't add a base path to the urls diff -r f8e25756a5ec -r 5790a2576505 playtreeparser.c --- a/playtreeparser.c Sun Jul 07 03:59:58 2002 +0000 +++ b/playtreeparser.c Sun Jul 07 04:07:57 2002 +0000 @@ -435,7 +435,7 @@ for(i = 0 ; pt->files[i] != NULL ; i++) { fl = strlen(pt->files[i]); - if(fl <= 0 || pt->files[i][0] == PATH_SEP) + if(fl <= 0 || pt->files[i][0] == PATH_SEP || strstr(pt->files[i],"://")) continue; pt->files[i] = (char*)realloc(pt->files[i],bl+fl+1); memmove(pt->files[i] + bl,pt->files[i],fl+1);