Module: libav Branch: release/11 Commit: 3aba00b1b331461611d32cfd56ebe8334f6d1b93
Author: Vittorio Giovara <[email protected]> Committer: Luca Barbato <[email protected]> Date: Wed Nov 12 11:13:02 2014 +0100 indeo3: check ff_set_dimensions return value CC: [email protected] Bug-Id: CID 1135740 (cherry picked from commit c6d7c201dfa80502cb6cefbee7dc9160cedb5187) Signed-off-by: Luca Barbato <[email protected]> --- libavcodec/indeo3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index a9c02b2..f74ac42 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -944,7 +944,8 @@ static int decode_frame_headers(Indeo3DecodeContext *ctx, AVCodecContext *avctx, free_frame_buffers(ctx); if ((res = allocate_frame_buffers(ctx, avctx)) < 0) return res; - ff_set_dimensions(avctx, width, height); + if ((res = ff_set_dimensions(avctx, width, height)) < 0) + return res; } y_offset = bytestream2_get_le32(&gb); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
