From 32403d1fabb602d71358fcb186fbbc6896db86a4 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Thu, 15 Oct 2015 10:08:36 -0500 Subject: [PATCH] avfilter/af_flanger: free frame on ENOMEM Signed-off-by: Kyle Swanson Signed-off-by: Michael Niedermayer --- libavfilter/af_flanger.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavfilter/af_flanger.c b/libavfilter/af_flanger.c index 39d4e7b4b7..f8ec8303d1 100644 --- a/libavfilter/af_flanger.c +++ b/libavfilter/af_flanger.c @@ -149,8 +149,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) out_frame = frame; } else { out_frame = ff_get_audio_buffer(inlink, frame->nb_samples); - if (!out_frame) + if (!out_frame) { + av_frame_free(&frame); return AVERROR(ENOMEM); + } av_frame_copy_props(out_frame, frame); } -- GitLab