OSDN Git Service

avcodec/libmp3lame: use av_malloc_array()
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 17 Jan 2015 11:56:19 +0000 (12:56 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 17 Jan 2015 11:56:19 +0000 (12:56 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/libmp3lame.c

index e33919b..6b9561d 100644 (file)
@@ -146,7 +146,7 @@ static av_cold int mp3lame_encode_init(AVCodecContext *avctx)
     if (avctx->sample_fmt == AV_SAMPLE_FMT_FLTP) {
         int ch;
         for (ch = 0; ch < avctx->channels; ch++) {
-            s->samples_flt[ch] = av_malloc(avctx->frame_size *
+            s->samples_flt[ch] = av_malloc_array(avctx->frame_size,
                                            sizeof(*s->samples_flt[ch]));
             if (!s->samples_flt[ch]) {
                 ret = AVERROR(ENOMEM);