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:
authorCampbell Barton <ideasman42@gmail.com>2018-10-04 04:03:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-04 04:03:53 +0300
commitb36f17b8c2d6fb26cfd10f84504187e8dcc5f8cb (patch)
treeee01d0c3b78d81049a42ebd27fc5828585ba3e9e /source/blender/editors/uvedit
parent3c8c1841d72d8b9b13799c9a12cd8637b38be51d (diff)
Fix missing free w/ UV-lasso
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c1
1 files changed, 1 insertions, 0 deletions
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;
}