Commit daa4ceb6 authored by Warren Dukes's avatar Warren Dukes

oops, fix an infinate loop

git-svn-id: https://svn.musicpd.org/mpd/trunk@1004 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 965e6edc
......@@ -42,12 +42,14 @@ char * dupAndStripPlaylistSuffix(char * file) {
}
int isRemoteUrl(char * url) {
char * urlPrefixes[] = {
char * prefixes[] = {
"http://",
"ftp://",
NULL
};
char ** urlPrefixes = prefixes;
while(*urlPrefixes) {
if(strncmp(*urlPrefixes,url,strlen(*urlPrefixes)) == 0) {
#ifdef HAVE_MAD
......@@ -58,6 +60,7 @@ int isRemoteUrl(char * url) {
return 0;
#endif
}
urlPrefixes++;
}
return 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