mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-27 09:43:34 +00:00
avfilter/f_streamselect: fix memleaks of pad names
This commit is contained in:
parent
d492907e78
commit
8ca89e52df
@ -294,6 +294,12 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
av_freep(&s->map);
|
av_freep(&s->map);
|
||||||
av_freep(&s->frames);
|
av_freep(&s->frames);
|
||||||
ff_framesync_uninit(&s->fs);
|
ff_framesync_uninit(&s->fs);
|
||||||
|
|
||||||
|
for (int i = 0; i < ctx->nb_inputs; i++)
|
||||||
|
av_freep(&ctx->input_pads[i].name);
|
||||||
|
|
||||||
|
for (int i = 0; i < ctx->nb_outputs; i++)
|
||||||
|
av_freep(&ctx->output_pads[i].name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
static int query_formats(AVFilterContext *ctx)
|
||||||
|
Loading…
Reference in New Issue
Block a user