From 75625c555cbe3564eedd05721ace78d16f9f139a Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Thu, 8 Nov 2018 22:26:14 +0100 Subject: [PATCH] avfilter/af_headphone : fix mem leak report by coverity CID 1439934 CID 1439935 --- libavfilter/af_headphone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_headphone.c b/libavfilter/af_headphone.c index 760b97b733..0c7e4a2957 100644 --- a/libavfilter/af_headphone.c +++ b/libavfilter/af_headphone.c @@ -475,7 +475,7 @@ static int convert_coeffs(AVFilterContext *ctx, AVFilterLink *inlink) ret = ff_inlink_consume_samples(ctx->inputs[i + 1], len, len, &s->in[i + 1].frame); if (ret < 0) - return ret; + goto fail; ptr = (float *)s->in[i + 1].frame->extended_data[0]; if (s->hrir_fmt == HRIR_STEREO) {