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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-04-13 12:36:53 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2014-04-13 12:36:53 +0400
commitb86737337e968df7a18210d30407fc205f1114af (patch)
tree5ef3a8c4b33136295cb15533c41f2b7b5d8af6f0 /source/blender/modifiers/intern/MOD_uvproject.c
parent267598c5f0cd4636281979f1f260fceb5c79ee95 (diff)
parent2025e4cbb9772ad6c72b56ad28e5bdd62d596b9a (diff)
Merge branch 'master' into depsgraph_refactor
Diffstat (limited to 'source/blender/modifiers/intern/MOD_uvproject.c')
-rw-r--r--source/blender/modifiers/intern/MOD_uvproject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index 6e5e1931d56..d98c4a0c373 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -232,7 +232,7 @@ static DerivedMesh *uvprojectModifier_do(UVProjectModifierData *umd,
numVerts = dm->getNumVerts(dm);
- coords = MEM_callocN(sizeof(*coords) * numVerts,
+ coords = MEM_mallocN(sizeof(*coords) * numVerts,
"uvprojectModifier_do coords");
dm->getVertCos(dm, coords);