avfilter/vignette: fix input frame memory leak.

Fixes Ticket #3642.
pull/68/head
Masa Utashiro 11 years ago committed by Clément Bœsch
parent a9bf713d35
commit 491d602283
  1. 1
      libavfilter/vf_vignette.c

@ -268,6 +268,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
av_frame_free(&in);
return ff_filter_frame(outlink, out);
}

Loading…
Cancel
Save