avfilter/formats: use av_realloc_array in ADD_FORMAT()

This commit is contained in:
Clément Bœsch 2015-03-14 21:17:27 +01:00
parent 38fb183b12
commit 93d9ce7cec

View File

@ -308,8 +308,8 @@ do { \
if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) \
return AVERROR(ENOMEM); \
\
fmts = av_realloc((*f)->list, \
sizeof(*(*f)->list) * ((*f)->nb + 1));\
fmts = av_realloc_array((*f)->list, (*f)->nb + 1, \
sizeof(*(*f)->list)); \
if (!fmts) { \
if (!oldf) \
av_freep(f); \