avfilter/pthread: Use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dcad6ba68a
commit
658f5d1f63
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ static int thread_init_internal(ThreadContext *c, int nb_threads)
|
|||
return 1;
|
||||
|
||||
c->nb_threads = nb_threads;
|
||||
c->workers = av_mallocz(sizeof(*c->workers) * nb_threads);
|
||||
c->workers = av_mallocz_array(sizeof(*c->workers), nb_threads);
|
||||
if (!c->workers)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue