[FFmpeg-cvslog] vmnc: return error on decode_init() failure.

Ronald S. Bultje git at videolan.org
Thu Mar 1 03:20:23 CET 2012


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Tue Feb 28 19:00:48 2012 -0800| [07a180972fb369bb59bf6d4f8edb4598c51e80d2] | committer: Ronald S. Bultje

vmnc: return error on decode_init() failure.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable at libav.org

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

 libavcodec/vmnc.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/libavcodec/vmnc.c b/libavcodec/vmnc.c
index 8cc78fa..b1c4cbd 100644
--- a/libavcodec/vmnc.c
+++ b/libavcodec/vmnc.c
@@ -483,6 +483,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
         break;
     default:
         av_log(avctx, AV_LOG_ERROR, "Unsupported bitdepth %i\n", c->bpp);
+        return AVERROR_INVALIDDATA;
     }
 
     return 0;



More information about the ffmpeg-cvslog mailing list