avfilter/vf_lensfun: use av_freep

This commit is contained in:
Paul B Mahol 2018-10-18 11:30:11 +02:00
parent bf5bdbdb92
commit 0ce7005d34

View File

@ -510,10 +510,8 @@ static av_cold void uninit(AVFilterContext *ctx)
lf_lens_destroy(lensfun->lens);
if (lensfun->modifier)
lf_modifier_destroy(lensfun->modifier);
if (lensfun->distortion_coords)
av_free(lensfun->distortion_coords);
if (lensfun->interpolation)
av_free(lensfun->interpolation);
av_freep(&lensfun->distortion_coords);
av_freep(&lensfun->interpolation);
}
static const AVFilterPad lensfun_inputs[] = {