From b36f17b8c2d6fb26cfd10f84504187e8dcc5f8cb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 4 Oct 2018 11:03:45 +1000 Subject: [PATCH] Fix missing free w/ UV-lasso --- source/blender/editors/uvedit/uvedit_ops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c index fe4e957befc..246c8593d10 100644 --- a/source/blender/editors/uvedit/uvedit_ops.c +++ b/source/blender/editors/uvedit/uvedit_ops.c @@ -3544,6 +3544,7 @@ static bool do_lasso_select_mesh_uv(bContext *C, const int mcords[][2], short mo } } } + MEM_freeN(objects); return changed_multi; }