mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/avf_concat: Use av_freep(), avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8e6a44cfc5
commit
7df2981f04
1 changed files with 1 additions and 1 deletions
|
|
@ -409,7 +409,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||
}
|
||||
for (i = 0; i < ctx->nb_outputs; i++)
|
||||
av_freep(&ctx->output_pads[i].name);
|
||||
av_free(cat->in);
|
||||
av_freep(&cat->in);
|
||||
}
|
||||
|
||||
AVFilter ff_avf_concat = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue