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:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-05-03 16:42:55 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-05-04 15:02:58 +0300
commitd8a03c77d796db4ae2546fbcbe230dbf4846b0ea (patch)
treedf3426bdeb08321f7654bfe0ca5f814469c2d384 /source/blender/modifiers/intern/MOD_lattice.c
parent4880e2e75a860f4716e3122f5ae14f34f50a9452 (diff)
Allocate/free meshes with generic library functions.
This avoids the need to use Mesh-specific functions, and makes allocation and freeing easy oneliners.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_lattice.c')
-rw-r--r--source/blender/modifiers/intern/MOD_lattice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_lattice.c b/source/blender/modifiers/intern/MOD_lattice.c
index 25f1ae1a687..87933558d86 100644
--- a/source/blender/modifiers/intern/MOD_lattice.c
+++ b/source/blender/modifiers/intern/MOD_lattice.c
@@ -41,6 +41,7 @@
#include "BKE_editmesh.h"
#include "BKE_lattice.h"
+#include "BKE_library.h"
#include "BKE_library_query.h"
#include "BKE_mesh.h"
#include "BKE_modifier.h"
@@ -129,8 +130,7 @@ static void deformVertsEM(
deformVerts(md, ctx, mesh_src, vertexCos, numVerts);
if (!mesh) {
- BKE_mesh_free(mesh_src);
- MEM_freeN(mesh_src);
+ BKE_id_free(NULL, mesh_src);
}
}