From edcfbef90da5f3a6abf60559042d61d0f3d765d7 Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Thu, 8 Sep 2005 21:08:02 +0000 Subject: Patch to make the configure flag for mpd-mad and mpd-libid3tag more logic (from ticho) git-svn-id: https://svn.musicpd.org/mpd/trunk@3477 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/inputPlugins/ogg_plugin.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/inputPlugins/ogg_plugin.c') diff --git a/src/inputPlugins/ogg_plugin.c b/src/inputPlugins/ogg_plugin.c index f74e3e56a..abadca388 100644 --- a/src/inputPlugins/ogg_plugin.c +++ b/src/inputPlugins/ogg_plugin.c @@ -366,7 +366,11 @@ MpdTag * oggTagDup(char * file) { OggVorbis_File vf; fp = fopen(file,"r"); - if(!fp) return NULL; + if(!fp) + { + DEBUG("oggTagDup: Failed to open file: '%s', %s\n", file, strerror(errno)); + return NULL; + } if(ov_open(fp,&vf,NULL,0)<0) { fclose(fp); return NULL; -- cgit v1.2.3