mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
avfilter/f_metadata: do not memleak expr
This commit is contained in:
parent
9c9d5bf257
commit
a6e2cf5eb0
@ -283,6 +283,8 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
{
|
{
|
||||||
MetadataContext *s = ctx->priv;
|
MetadataContext *s = ctx->priv;
|
||||||
|
|
||||||
|
av_expr_free(s->expr);
|
||||||
|
s->expr = NULL;
|
||||||
if (s->avio_context) {
|
if (s->avio_context) {
|
||||||
avio_closep(&s->avio_context);
|
avio_closep(&s->avio_context);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user