oops, fix an infinate loop

git-svn-id: https://svn.musicpd.org/mpd/trunk@1004 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2004-05-14 21:35:20 +00:00
parent 965e6edcf1
commit daa4ceb65a

View File

@ -42,12 +42,14 @@ char * dupAndStripPlaylistSuffix(char * file) {
} }
int isRemoteUrl(char * url) { int isRemoteUrl(char * url) {
char * urlPrefixes[] = { char * prefixes[] = {
"http://", "http://",
"ftp://", "ftp://",
NULL NULL
}; };
char ** urlPrefixes = prefixes;
while(*urlPrefixes) { while(*urlPrefixes) {
if(strncmp(*urlPrefixes,url,strlen(*urlPrefixes)) == 0) { if(strncmp(*urlPrefixes,url,strlen(*urlPrefixes)) == 0) {
#ifdef HAVE_MAD #ifdef HAVE_MAD
@ -58,6 +60,7 @@ int isRemoteUrl(char * url) {
return 0; return 0;
#endif #endif
} }
urlPrefixes++;
} }
return 0; return 0;