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>2011-11-16 23:57:20 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-16 23:57:20 +0400
commit3ed866d2fc69e7c398e4b5f9bc9e2c06758d06cf (patch)
treec979010be379535c253a1fff6307daf8e6826996 /source/blender/blenkernel/intern/customdata.c
parent93581ab8159a0422403de67c35aa9ce8a11e8122 (diff)
parent3dcc9aef9685388255d4cf9d646830d573aeb932 (diff)
svn merge -r41926:41932 ^/trunk/blender
Diffstat (limited to 'source/blender/blenkernel/intern/customdata.c')
-rw-r--r--source/blender/blenkernel/intern/customdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index f0b93212766..e2f8c68e75f 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -2360,7 +2360,7 @@ void CustomData_bmesh_init_pool(CustomData *data, int allocsize)
/* If there are no layers, no pool is needed just yet */
if (data->totlayer) {
- data->pool = BLI_mempool_create(data->totsize, allocsize, allocsize, 1, 0);
+ data->pool = BLI_mempool_create(data->totsize, allocsize, allocsize, TRUE, FALSE);
}
}