From 24fd8f729a58b18159912a84525b910b0d4e7ef5 Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Thu, 20 Oct 2022 17:54:29 +0200 Subject: Fix memory leak when proxy building fails Leak introduced in recent fix - bf8d4a9bc6fb28. --- source/blender/imbuf/intern/indexer.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender') diff --git a/source/blender/imbuf/intern/indexer.c b/source/blender/imbuf/intern/indexer.c index e8e4b80ef45..eaa72441fb6 100644 --- a/source/blender/imbuf/intern/indexer.c +++ b/source/blender/imbuf/intern/indexer.c @@ -909,6 +909,9 @@ static IndexBuildContext *index_ffmpeg_create_context(struct anim *anim, if (context->proxy_ctx[0] == NULL && context->proxy_ctx[1] == NULL && context->proxy_ctx[2] == NULL && context->proxy_ctx[3] == NULL) { + avformat_close_input(&context->iFormatCtx); + avcodec_free_context(&context->iCodecCtx); + MEM_freeN(context); return NULL; /* Nothing to transcode. */ } -- cgit v1.2.3