From b7affaf20ed9043bc553500cf326d4d3e3287e02 Mon Sep 17 00:00:00 2001 From: Avaer Kazmer Date: Fri, 2 Mar 2018 00:28:27 -0800 Subject: [PATCH] Bugfix vorbis decoder missing return value --- src/VorbisDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VorbisDecoder.cpp b/src/VorbisDecoder.cpp index 112acf5..478a78c 100644 --- a/src/VorbisDecoder.cpp +++ b/src/VorbisDecoder.cpp @@ -237,7 +237,7 @@ public: return 0; } static int close_func(void *datasource) { - // nothing + return 0; } static long tell_func(void *datasource) { VorbisDecoderInternal *decoder = (VorbisDecoderInternal *)datasource;