From 23b203014f5dbd85b75a6b97597be9c877cd3a1b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 18 Oct 2012 20:41:51 +0200 Subject: [PATCH] indeo4: prevent printing uninitialized variable Fixes CID703822 Signed-off-by: Michael Niedermayer --- libavcodec/indeo4.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/indeo4.c b/libavcodec/indeo4.c index bb5ec10309..a3d7e6cde1 100644 --- a/libavcodec/indeo4.c +++ b/libavcodec/indeo4.c @@ -197,6 +197,7 @@ static int decode_pic_hdr(IVI45DecContext *ctx, AVCodecContext *avctx) /* decode subdivision of the planes */ pic_conf.luma_bands = decode_plane_subdivision(&ctx->gb); + pic_conf.chroma_bands = 0; if (pic_conf.luma_bands) pic_conf.chroma_bands = decode_plane_subdivision(&ctx->gb); ctx->is_scalable = pic_conf.luma_bands != 1 || pic_conf.chroma_bands != 1;