Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Castilla <manzanillawork@gmail.com>2021-07-26 20:10:16 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-07-26 21:13:03 +0300
commit883fb49d4f1101d5614049c53196546e308a6d33 (patch)
treece5f79ae612c43923a86b64e4d3419488b130b39 /source/blender/compositor
parenta117794f8c05ad2e2b7db0b0f43c3059f20e62a1 (diff)
Compositor: Fix memory leak when exporting operations on debug
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/intern/COM_Debug.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/compositor/intern/COM_Debug.cc b/source/blender/compositor/intern/COM_Debug.cc
index c0460aed4a4..5443974cbb0 100644
--- a/source/blender/compositor/intern/COM_Debug.cc
+++ b/source/blender/compositor/intern/COM_Debug.cc
@@ -492,6 +492,7 @@ void DebugInfo::delete_operation_exports()
BLI_delete(file->path, false, false);
}
}
+ BLI_filelist_free(file_list, num_files);
}
}