Commit c8372f80 authored by Ole Andre Birkedal's avatar Ole Andre Birkedal Committed by Michael Niedermayer

avfilter/aeval: Fixed a memory leak in EvalContext::channel_values

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dcddca93
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment