On Sat, May 30, 2020 at 03:32:18PM +0200, Nicolas George wrote:
> lance.lmw...@gmail.com (12020-05-30):
> > From: Limin Wang <lance.lmw...@gmail.com>
> > 
> > Signed-off-by: Limin Wang <lance.lmw...@gmail.com>
> > ---
> >  libavutil/dict.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/libavutil/dict.c b/libavutil/dict.c
> > index 0ea7138..a1107b1 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 you change something, make sure the alignment is correct.
I think it's cosmetic changes, so I didn't change the alignment for the first 
version.
If it's OK, I'll update with format changes also.

> 
> >          if (!tmp)
> >              goto err_out;
> >          m->elems = tmp;
> 
> Regards,
> 
> -- 
>   Nicolas George



-- 
Thanks,
Limin Wang
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

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

Reply via email to