mirror of https://git.ffmpeg.org/ffmpeg.git
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;
|
||||
}
|
||||
av_freep(&eval->expr);
|
||||
av_freep(&eval->channel_values);
|
||||
}
|
||||
|
||||
static int config_props(AVFilterLink *outlink)
|
||||
|
|
Loading…
Reference in New Issue