summaryrefslogtreecommitdiff
path: root/libavfilter/af_aphaser.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-06-24 18:36:46 +0200
committerPaul B Mahol <onemda@gmail.com>2017-06-24 19:15:57 +0200
commitc90b88090c260a0af018b6c1e955266e24ebf6f4 (patch)
tree74405107c4cb1234dfced7a2052a198ebb3a35c2 /libavfilter/af_aphaser.c
parentdb9e87dd8c1ce11d37edc16f9380ee8dee68891b (diff)
avfilter: do not leak AVFrame on failed buffer allocation
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_aphaser.c')
-rw-r--r--libavfilter/af_aphaser.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/af_aphaser.c b/libavfilter/af_aphaser.c
index 780407e924..dcffc216dd 100644
--- a/libavfilter/af_aphaser.c
+++ b/libavfilter/af_aphaser.c
@@ -248,8 +248,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
outbuf = inbuf;
} else {
outbuf = ff_get_audio_buffer(inlink, inbuf->nb_samples);
- if (!outbuf)
+ if (!outbuf) {
+ av_frame_free(&inbuf);
return AVERROR(ENOMEM);
+ }
av_frame_copy_props(outbuf, inbuf);
}