From 081e117bfee0e2a1586fff00b82c7d59631d9775 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 20 Jan 2015 16:26:42 +0100 Subject: [PATCH] avfilter/af_ashowinfo: Use av_realloc_array() Signed-off-by: Michael Niedermayer --- libavfilter/af_ashowinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_ashowinfo.c b/libavfilter/af_ashowinfo.c index ee95029a3a..0e6c6c06f5 100644 --- a/libavfilter/af_ashowinfo.c +++ b/libavfilter/af_ashowinfo.c @@ -159,7 +159,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *buf) int data_size = buf->nb_samples * block_align; int planes = planar ? channels : 1; int i; - void *tmp_ptr = av_realloc(s->plane_checksums, channels * sizeof(*s->plane_checksums)); + void *tmp_ptr = av_realloc_array(s->plane_checksums, channels, sizeof(*s->plane_checksums)); if (!tmp_ptr) return AVERROR(ENOMEM); -- 2.11.0