[Bf-blender-cvs] [b36f17b8c2d] blender2.8: Fix missing free w/ UV-lasso

Campbell Barton noreply at git.blender.org
Thu Oct 4 03:04:12 CEST 2018


Commit: b36f17b8c2d6fb26cfd10f84504187e8dcc5f8cb
Author: Campbell Barton
Date:   Thu Oct 4 11:03:45 2018 +1000
Branches: blender2.8
https://developer.blender.org/rBb36f17b8c2d6fb26cfd10f84504187e8dcc5f8cb

Fix missing free w/ UV-lasso

===================================================================

M	source/blender/editors/uvedit/uvedit_ops.c

===================================================================

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;
 }



More information about the Bf-blender-cvs mailing list