From 3aba00b1b331461611d32cfd56ebe8334f6d1b93 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Wed, 12 Nov 2014 11:13:02 +0100 Subject: [PATCH] indeo3: check ff_set_dimensions return value CC: libav-stable@libav.org Bug-Id: CID 1135740 (cherry picked from commit c6d7c201dfa80502cb6cefbee7dc9160cedb5187) Signed-off-by: Luca Barbato --- 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); -- 2.7.4