avfilter/vf_libopencv: use av_freep() avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-12-19 15:04:34 +01:00
parent 4e1ecfe214
commit 4d48ea3c4b
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ static av_cold void uninit(AVFilterContext *ctx)
if (s->uninit)
s->uninit(ctx);
av_free(s->priv);
av_freep(&s->priv);
}
static int filter_frame(AVFilterLink *inlink, AVFrame *in)