diff options
author | Andreas Rheinhardt <[email protected]> | 2020-09-10 16:07:28 +0200 |
---|---|---|
committer | Andreas Rheinhardt <[email protected]> | 2021-02-27 07:20:57 +0100 |
commit | e434e138924cf0d30936583e20db709aed92081f (patch) | |
tree | 4e779a420bacccab44e1197aeddd3773a7c90b29 | |
parent | 0d7fe1ab8fca8e9237363e5c3c6d13caa632aa56 (diff) |
avfilter/lavfutils: Fix memleak when avformat_find_stream_info() fails
Reviewed-by: Paul B Mahol <[email protected]>
Reviewed-by: Nicolas George <[email protected]>
Signed-off-by: Andreas Rheinhardt <[email protected]>
(cherry picked from commit f38926ec24247d5e7365f0c5e73a5db43146f5a1)
-rw-r--r-- | libavfilter/lavfutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |