Module: libav Branch: release/0.8 Commit: 1dd1ee00d54ba2a9f5d8ae2e82a22891300b6807
Author: Ronald S. Bultje <[email protected]> Committer: Reinhard Tartler <[email protected]> Date: Tue Feb 28 19:00:48 2012 -0800 vmnc: return error on decode_init() failure. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected] (cherry picked from commit 07a180972fb369bb59bf6d4f8edb4598c51e80d2) Signed-off-by: Reinhard Tartler <[email protected]> --- libavcodec/vmnc.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavcodec/vmnc.c b/libavcodec/vmnc.c index a72c507..ca0ba82 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
