Commit a6753817 authored by Warren Dukes's avatar Warren Dukes

fix for loading playlists on platforms where char is unsigned (like PPC)

git-svn-id: https://svn.musicpd.org/mpd/trunk@560 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent f641d046
......@@ -1098,6 +1098,7 @@ int loadPlaylist(FILE * fp, char * utf8file) {
char * parent = parentPath(temp);
int parentlen = strlen(parent);
char * erroredFile = NULL;
int tempInt;
strcpy(rfile,temp);
strcat(rfile,".");
......@@ -1120,7 +1121,8 @@ int loadPlaylist(FILE * fp, char * utf8file) {
return -1;
}
while((s[slength] = fgetc(fileP))!=EOF) {
while((tempInt = fgetc(fileP))!=EOF) {
s[slength] = tempInt;
if(s[slength]=='\n' || s[slength]=='\0') {
s[slength] = '\0';
if(strncmp(s,musicDir,strlen(musicDir))==0) {
......
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