Commit 92cc6d51 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mdct_template: Use av_malloc_array()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 681a5b8d
...@@ -60,7 +60,7 @@ av_cold int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale) ...@@ -60,7 +60,7 @@ av_cold int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale)
if (ff_fft_init(s, s->mdct_bits - 2, inverse) < 0) if (ff_fft_init(s, s->mdct_bits - 2, inverse) < 0)
goto fail; goto fail;
s->tcos = av_malloc(n/2 * sizeof(FFTSample)); s->tcos = av_malloc_array(n/2, sizeof(FFTSample));
if (!s->tcos) if (!s->tcos)
goto fail; goto fail;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment