From 4bc5eb27a74e3eb1805f21a33d4ef08f8f7026e4 Mon Sep 17 00:00:00 2001 From: Limin Wang Date: Mon, 25 May 2020 23:21:27 +0800 Subject: [PATCH] avutil/dict: av_realloc -> av_realloc_array() Signed-off-by: Limin Wang --- libavutil/dict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/dict.c b/libavutil/dict.c index 0ea71386e5..9d3d96c58b 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -103,8 +103,8 @@ int av_dict_set(AVDictionary **pm, const char *key, const char *value, av_free(tag->key); *tag = m->elems[--m->count]; } else if (copy_value) { - AVDictionaryEntry *tmp = av_realloc(m->elems, - (m->count + 1) * sizeof(*m->elems)); + AVDictionaryEntry *tmp = av_realloc_array(m->elems, + m->count + 1, sizeof(*m->elems)); if (!tmp) goto err_out; m->elems = tmp;