From e434e138924cf0d30936583e20db709aed92081f Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Thu, 10 Sep 2020 16:07:28 +0200 Subject: [PATCH] avfilter/lavfutils: Fix memleak when avformat_find_stream_info() fails Reviewed-by: Paul B Mahol Reviewed-by: Nicolas George Signed-off-by: Andreas Rheinhardt (cherry picked from commit f38926ec24247d5e7365f0c5e73a5db43146f5a1) --- libavfilter/lavfutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/lavfutils.c b/libavfilter/lavfutils.c index 84dd4c0704..d7de89f4b3 100644 --- a/libavfilter/lavfutils.c +++ b/libavfilter/lavfutils.c @@ -46,7 +46,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4], if ((ret = avformat_find_stream_info(format_ctx, NULL)) < 0) { av_log(log_ctx, AV_LOG_ERROR, "Find stream info failed\n"); - return ret; + goto end; } par = format_ctx->streams[0]->codecpar;