From 24222cc1d5caaeaad8df69904bc546bf9d34caa3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 12 Jan 2015 23:11:44 +0100 Subject: [PATCH] avcodec/opus_imdct: Use av_malloc_array() Signed-off-by: Michael Niedermayer --- libavcodec/opus_imdct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/opus_imdct.c b/libavcodec/opus_imdct.c index 0a6fca994e..126e882ea6 100644 --- a/libavcodec/opus_imdct.c +++ b/libavcodec/opus_imdct.c @@ -105,11 +105,11 @@ av_cold int ff_celt_imdct_init(CeltIMDCTContext **ps, int N) s->len4 = len2 / 2; s->len2 = len2; - s->tmp = av_malloc(len * 2 * sizeof(*s->tmp)); + s->tmp = av_malloc_array(len, 2 * sizeof(*s->tmp)); if (!s->tmp) goto fail; - s->twiddle_exptab = av_malloc(s->len4 * sizeof(*s->twiddle_exptab)); + s->twiddle_exptab = av_malloc_array(s->len4, sizeof(*s->twiddle_exptab)); if (!s->twiddle_exptab) goto fail;