diff options
Diffstat (limited to 'src/stored_playlist.c')
-rw-r--r-- | src/stored_playlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stored_playlist.c b/src/stored_playlist.c index cadd2ccdf..78977bf69 100644 --- a/src/stored_playlist.c +++ b/src/stored_playlist.c @@ -156,7 +156,7 @@ spl_load(const char *utf8path) if (*s == PLAYLIST_COMMENT) continue; - if (!isValidRemoteUtf8Url(s)) { + if (!isRemoteUrl(s)) { struct song *song; path_utf8 = map_fs_to_utf8(s, path_max_tmp); @@ -338,7 +338,7 @@ spl_append_song(const char *utf8path, struct song *song) return PLAYLIST_RESULT_ERRNO; } - if (st.st_size >= ((MPD_PATH_MAX+1) * (off_t)playlist_max_length)) { + if (st.st_size / (MPD_PATH_MAX + 1) >= (off_t)playlist_max_length) { while (fclose(file) != 0 && errno == EINTR); return PLAYLIST_RESULT_TOO_LARGE; } @@ -360,7 +360,7 @@ spl_append_uri(const char *url, const char *utf8file) if (song) return spl_append_song(utf8file, song); - if (!isValidRemoteUtf8Url(url)) + if (!isRemoteUrl(url)) return PLAYLIST_RESULT_NO_SUCH_SONG; song = song_remote_new(url); |