From c90b88090c260a0af018b6c1e955266e24ebf6f4 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 24 Jun 2017 18:36:46 +0200 Subject: avfilter: do not leak AVFrame on failed buffer allocation Signed-off-by: Paul B Mahol --- libavfilter/af_atempo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libavfilter/af_atempo.c') diff --git a/libavfilter/af_atempo.c b/libavfilter/af_atempo.c index d90910598c..76410221d6 100644 --- a/libavfilter/af_atempo.c +++ b/libavfilter/af_atempo.c @@ -1090,8 +1090,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *src_buffer) while (src < src_end) { if (!atempo->dst_buffer) { atempo->dst_buffer = ff_get_audio_buffer(outlink, n_out); - if (!atempo->dst_buffer) + if (!atempo->dst_buffer) { + av_frame_free(&src_buffer); return AVERROR(ENOMEM); + } av_frame_copy_props(atempo->dst_buffer, src_buffer); atempo->dst = atempo->dst_buffer->data[0]; -- cgit v1.2.3