diff options
author | Max Kellermann <max@duempel.org> | 2009-09-10 23:18:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-09-10 23:18:43 +0200 |
commit | fdc479676f7f39d33287111900f0862ddb7797af (patch) | |
tree | 9b77638e323b14e8b5cba3fd002ac2d7c580e06a /src | |
parent | 4cdf62000c2d5403f0dc5a5078719c2d63d268c7 (diff) | |
parent | 985b8b2d7159a47d1dd1d3604d6b8f6edc94d2e7 (diff) | |
download | mpd-fdc479676f7f39d33287111900f0862ddb7797af.tar.gz mpd-fdc479676f7f39d33287111900f0862ddb7797af.tar.xz mpd-fdc479676f7f39d33287111900f0862ddb7797af.zip |
Merge branch 'v0.15.x'
Conflicts:
NEWS
configure.ac
doc/mpdconf.example
Diffstat (limited to 'src')
-rwxr-xr-x | src/decoder/vorbis_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/vorbis_plugin.c b/src/decoder/vorbis_plugin.c index 4548d1b57..39a075176 100755 --- a/src/decoder/vorbis_plugin.c +++ b/src/decoder/vorbis_plugin.c @@ -382,7 +382,7 @@ vorbis_tag_dup(const char *file) return NULL; } - if (ov_test_callbacks(fp, &vf, NULL, 0, OV_CALLBACKS_STREAMONLY) < 0) { + if (ov_open(fp, &vf, NULL, 0) < 0) { fclose(fp); return NULL; } |