From d9319ccebd2a486431a2fb3474ed53e01ae4f3a2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 16 Jan 2007 23:28:41 +0000 Subject: [PATCH] set data_size to 0 so that in case we return without setting it nothing funny can happen Originally committed as revision 7558 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/a52dec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/a52dec.c b/libavcodec/a52dec.c index 0a7c0c5..1bf7f8e 100644 --- a/libavcodec/a52dec.c +++ b/libavcodec/a52dec.c @@ -162,6 +162,8 @@ static int a52_decode_frame(AVCodecContext *avctx, 2, 1, 2, 3, 3, 4, 4, 5 }; + *data_size= 0; + buf_ptr = buf; while (buf_size > 0) { len = s->inbuf_ptr - s->inbuf; -- 2.7.4