mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/af_join: fix possible memory leaks
Allocation of input frames is independent from allocation of new input pads.
This commit is contained in:
parent
9c3178808d
commit
aa26f83bdd
@ -207,9 +207,12 @@ static av_cold void join_uninit(AVFilterContext *ctx)
|
|||||||
JoinContext *s = ctx->priv;
|
JoinContext *s = ctx->priv;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < s->inputs && s->input_frames; i++) {
|
||||||
|
av_frame_free(&s->input_frames[i]);
|
||||||
|
}
|
||||||
|
|
||||||
for (i = 0; i < ctx->nb_inputs; i++) {
|
for (i = 0; i < ctx->nb_inputs; i++) {
|
||||||
av_freep(&ctx->input_pads[i].name);
|
av_freep(&ctx->input_pads[i].name);
|
||||||
av_frame_free(&s->input_frames[i]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
av_freep(&s->channels);
|
av_freep(&s->channels);
|
||||||
|
Loading…
Reference in New Issue
Block a user