[FFmpeg-devel] [PATCH] avfilter/af_flanger: free frame on ENOMEM

Kyle Swanson k at ylo.ph
Thu Oct 15 17:08:36 CEST 2015


Signed-off-by: Kyle Swanson <k at ylo.ph>
---
 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 39d4e7b..f8ec830 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);
     }
 
-- 
1.8.4



More information about the ffmpeg-devel mailing list