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:
authorAurel Gruber <aurel.gruber@infix.ch>2017-02-24 11:28:33 +0300
committerAurel Gruber <aurel.gruber@infix.ch>2017-02-27 13:24:36 +0300
commiteafa04ecfa6e06c37661dd75ee5261805dd70dd7 (patch)
tree8a9aa805d607394c47ca31ec2cbe61cc5d35d916 /source/blender/editors/uvedit
parentd166cdfa2556c8323a642d0bbf3570b37edf71a6 (diff)
Category: UV Unwrapping SLIM Algorithm Integration
freeing matrix_transfer properly
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index 6ff5176491b..e8af44e32b0 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -4430,6 +4430,7 @@ void param_slim_end(ParamHandle *handle) {
PHandle *phandle = (PHandle *) handle;
matrix_transfer *mt = phandle->mt;
set_uv_param_slim(handle, mt);
+ free_matrix_transfer(mt);
}