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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/125/head
Ole Andre Birkedal 10 years ago committed by Michael Niedermayer
parent dcddca934c
commit c8372f8001
  1. 1
      libavfilter/aeval.c

@ -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…
Cancel
Save