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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Ole Andre Birkedal 2015-03-10 14:12:30 +01:00 committed by Michael Niedermayer
parent dcddca934c
commit c8372f8001
1 changed files with 1 additions and 0 deletions

View File

@ -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)