1
0

avfilter/framesync: reset nb_in on allocation failure

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-05-05 11:38:28 -03:00
parent eb392e4100
commit ccf395e8bd

View File

@ -95,8 +95,11 @@ int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
fs->nb_in = nb_in;
fs->in = av_calloc(nb_in, sizeof(*fs->in));
if (!fs->in)
if (!fs->in) {
fs->nb_in = 0;
return AVERROR(ENOMEM);
}
return 0;
}