diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-22 15:05:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-22 15:05:27 +0200 |
commit | aca48725afe8e8e3a6f7df06d088bd7bd8bd6dc6 (patch) | |
tree | bff40b2675e8a16ed658735fab1a656ecd913b91 | |
parent | e8e9186a70ae949226601d2bf23dfedcd09c5f83 (diff) | |
download | ffmpeg-aca48725afe8e8e3a6f7df06d088bd7bd8bd6dc6.tar.gz |
avcodec/proresdec2: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index b1affadaac..add99087ff 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -182,7 +182,7 @@ static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, cons if (ctx->slice_count != slice_count || !ctx->slices) { av_freep(&ctx->slices); - ctx->slices = av_mallocz(slice_count * sizeof(*ctx->slices)); + ctx->slices = av_mallocz_array(slice_count, sizeof(*ctx->slices)); if (!ctx->slices) return AVERROR(ENOMEM); ctx->slice_count = slice_count; |