avcodec/svq1dec: use av_malloc_array() to allocate pmv

pull/352/head
Paul B Mahol 4 years ago
parent 0ea2bda099
commit 7c66d24460
  1. 2
      libavcodec/svq1dec.c

@ -679,7 +679,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data,
if (result < 0)
return result;
pmv = av_malloc((FFALIGN(s->width, 16) / 8 + 3) * sizeof(*pmv));
pmv = av_malloc_array(FFALIGN(s->width, 16) / 8 + 3, sizeof(*pmv));
if (!pmv)
return AVERROR(ENOMEM);

Loading…
Cancel
Save