ffmpeg | branch: master | Limin Wang <lance.lmw...@gmail.com> | Mon May 25 
23:21:27 2020 +0800| [4bc5eb27a74e3eb1805f21a33d4ef08f8f7026e4] | committer: 
Limin Wang

avutil/dict: av_realloc -> av_realloc_array()

Signed-off-by: Limin Wang <lance.lmw...@gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4bc5eb27a74e3eb1805f21a33d4ef08f8f7026e4
---

 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;

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to