1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 17:29:30 +02:00

avfilter/vignette: fix input frame memory leak.

Fixes Ticket #3642.
This commit is contained in:
Masa Utashiro 2014-05-16 06:31:56 +02:00 committed by Clément Bœsch
parent a9bf713d35
commit 491d602283

View File

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