Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-22 17:05:27 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-22 17:05:27 +0400
commitaca48725afe8e8e3a6f7df06d088bd7bd8bd6dc6 (patch)
treebff40b2675e8a16ed658735fab1a656ecd913b91 /libavcodec/proresdec2.c
parente8e9186a70ae949226601d2bf23dfedcd09c5f83 (diff)
avcodec/proresdec2: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresdec2.c')
-rw-r--r--libavcodec/proresdec2.c2
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;