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>2014-03-01 13:14:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-01 13:14:20 +0400
commit973771723414e49709c100b1c3a48c7bdeb51cdd (patch)
treed8f1aaf5ef07cc4b748e5176039970771379ac3a /source/blender/editors/uvedit/uvedit_parametrizer.h
parent9742a6f6cb053ff45060f4bb5f5fa96084b7f5b5 (diff)
Fix for some unlikely memory leaks, remove redundant checks
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_parametrizer.h')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.h b/source/blender/editors/uvedit/uvedit_parametrizer.h
index 265577555a6..eaea781971d 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.h
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.h
@@ -59,8 +59,8 @@ void param_face_add(ParamHandle *handle,
ParamKey key,
int nverts,
ParamKey *vkeys,
- float **co,
- float **uv,
+ float *co[4],
+ float *uv[4],
ParamBool *pin,
ParamBool *select,
float face_normal[3]);