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>2013-08-04 22:12:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-04 22:12:49 +0400
commit78d69a1e1598f9967738c6d2f3195e2540d274d0 (patch)
tree0e5e84792b1d00293054920683135ad4da07deef /source/blender/modifiers
parent41721e11fbf73812297b6945d0d6683eda400ba0 (diff)
code cleanup: replace strcpy with BLI_strncpy for fixed size strings, and correct some harmless but incorrect sizeof() use
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_skin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_skin.c b/source/blender/modifiers/intern/MOD_skin.c
index df0a0266154..56571f69e09 100644
--- a/source/blender/modifiers/intern/MOD_skin.c
+++ b/source/blender/modifiers/intern/MOD_skin.c
@@ -411,7 +411,7 @@ static Frame **collect_hull_frames(int v, SkinNode *frames,
int nbr, i;
(*tothullframe) = emap[v].count;
- hull_frames = MEM_callocN(sizeof(Frame * *) * (*tothullframe),
+ hull_frames = MEM_callocN(sizeof(Frame *) * (*tothullframe),
"hull_from_frames.hull_frames");
i = 0;
for (nbr = 0; nbr < emap[v].count; nbr++) {