[FFmpeg-cvslog] avcodec/flacdec: Call ff_flacdsp_init() unconditionally

Michael Niedermayer git at videolan.org
Wed Nov 26 04:30:53 CET 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Nov 26 03:29:03 2014 +0100| [e5c01ccdf5a9a330d4c51a9b9ea721fd8f1fb70b] | committer: Michael Niedermayer

avcodec/flacdec: Call ff_flacdsp_init() unconditionally

Fixes out of array access
Fixes: signal_sigsegv_324b135_3398_cov_246853371_short.flac
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e5c01ccdf5a9a330d4c51a9b9ea721fd8f1fb70b
---

 libavcodec/flacdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index 9b1e428..cda44ba 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -472,10 +472,10 @@ static int decode_frame(FLACContext *s)
         ret = allocate_buffers(s);
         if (ret < 0)
             return ret;
-        ff_flacdsp_init(&s->dsp, s->avctx->sample_fmt, s->channels, s->bps);
         s->got_streaminfo = 1;
         dump_headers(s->avctx, (FLACStreaminfo *)s);
     }
+    ff_flacdsp_init(&s->dsp, s->avctx->sample_fmt, s->channels, s->bps);
 
 //    dump_headers(s->avctx, (FLACStreaminfo *)s);
 



More information about the ffmpeg-cvslog mailing list