aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/playlist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c
index 2ca7cadcb..62482a9df 100644
--- a/src/playlist.c
+++ b/src/playlist.c
@@ -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) {