mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avfilter/aeval: Fixed a memory leak in EvalContext::channel_values
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dcddca934c
commit
c8372f8001
@ -217,6 +217,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
eval->expr[i] = NULL;
|
eval->expr[i] = NULL;
|
||||||
}
|
}
|
||||||
av_freep(&eval->expr);
|
av_freep(&eval->expr);
|
||||||
|
av_freep(&eval->channel_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int config_props(AVFilterLink *outlink)
|
static int config_props(AVFilterLink *outlink)
|
||||||
|
Loading…
Reference in New Issue
Block a user