[FFmpeg-cvslog] avcodec/proresdec2: Use av_malloc_array()
Michael Niedermayer
git at videolan.org
Thu May 22 15:19:25 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu May 22 15:05:27 2014 +0200| [aca48725afe8e8e3a6f7df06d088bd7bd8bd6dc6] | committer: Michael Niedermayer
avcodec/proresdec2: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aca48725afe8e8e3a6f7df06d088bd7bd8bd6dc6
---
libavcodec/proresdec2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c
index b1affad..add9908 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;
More information about the ffmpeg-cvslog
mailing list