summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Justicz <maxj@mit.edu>2017-05-24 15:25:50 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-24 15:51:11 +0200
commitca616b0f72c65b0ef5f9e1e6125698b15f50a26e (patch)
treecbd2203e1560f994d900244df90c26d834f98384
parent4bc3008d04451cd31818e21703ed7ed96b6ff074 (diff)
avcodec/sanm: Fix uninitialized reference frames
Fixes: poc.snm Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/sanm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/sanm.c b/libavcodec/sanm.c
index dab9e410c3..811fd2188e 100644
--- a/libavcodec/sanm.c
+++ b/libavcodec/sanm.c
@@ -462,11 +462,11 @@ static void destroy_buffers(SANMVideoContext *ctx)
static av_cold int init_buffers(SANMVideoContext *ctx)
{
- av_fast_padded_malloc(&ctx->frm0, &ctx->frm0_size, ctx->buf_size);
- av_fast_padded_malloc(&ctx->frm1, &ctx->frm1_size, ctx->buf_size);
- av_fast_padded_malloc(&ctx->frm2, &ctx->frm2_size, ctx->buf_size);
+ av_fast_padded_mallocz(&ctx->frm0, &ctx->frm0_size, ctx->buf_size);
+ av_fast_padded_mallocz(&ctx->frm1, &ctx->frm1_size, ctx->buf_size);
+ av_fast_padded_mallocz(&ctx->frm2, &ctx->frm2_size, ctx->buf_size);
if (!ctx->version)
- av_fast_padded_malloc(&ctx->stored_frame,
+ av_fast_padded_mallocz(&ctx->stored_frame,
&ctx->stored_frame_size, ctx->buf_size);
if (!ctx->frm0 || !ctx->frm1 || !ctx->frm2 ||