aboutsummaryrefslogtreecommitdiffstats
path: root/src/stored_playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stored_playlist.c')
-rw-r--r--src/stored_playlist.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stored_playlist.c b/src/stored_playlist.c
index 78977bf69..034dfccb6 100644
--- a/src/stored_playlist.c
+++ b/src/stored_playlist.c
@@ -149,13 +149,15 @@ spl_load(const char *utf8path)
list = g_ptr_array_new();
- while (myFgets(buffer, sizeof(buffer), file)) {
+ while (fgets(buffer, sizeof(buffer), file)) {
char *s = buffer;
const char *path_utf8;
if (*s == PLAYLIST_COMMENT)
continue;
+ g_strchomp(buffer);
+
if (!isRemoteUrl(s)) {
struct song *song;