Commit 402c8cd7 authored by Eric Wong's avatar Eric Wong

debug messages no longer cause segfaults :P

git-svn-id: https://svn.musicpd.org/mpd/trunk@3553 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent f1d24a4b
......@@ -278,11 +278,9 @@ InputPlugin * hasMusicSuffix(char * utf8file) {
InputPlugin * isMusic(char * utf8file, time_t * mtime) {
if(isFile(utf8file,mtime)) {
InputPlugin *plugin = hasMusicSuffix(utf8file);
if (plugin == NULL) {
DEBUG("isMusic: %s is not a supported music file\n");
}
return plugin;
InputPlugin * plugin = hasMusicSuffix(utf8file);
if (plugin != NULL)
return plugin;
}
DEBUG("isMusic: %s is not a valid file\n",utf8file);
return NULL;
......
......@@ -50,7 +50,7 @@ Song * newSong(char * url, int type, Directory * parentDir) {
Song * song = NULL;
if(strchr(url, '\n')) {
DEBUG("newSong: '%s' is not a valid uri\n");
DEBUG("newSong: '%s' is not a valid uri\n",url);
return NULL;
}
......
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