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:
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index 83ed4e87a5a..9204052b81d 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -110,7 +110,7 @@ void BMO_Init_Op(BMOperator *op, char *opname)
op->exec = opdefines[opcode]->exec;
/*memarena, used for operator's slot buffers*/
- op->arena = BLI_memarena_new(BLI_MEMARENA_STD_BUFSIZE);
+ op->arena = BLI_memarena_new(BLI_MEMARENA_STD_BUFSIZE, "bmesh operator");
BLI_memarena_use_calloc (op->arena);
}
@@ -216,7 +216,7 @@ void BMO_CopySlot(BMOperator *source_op, BMOperator *dest_op, char *src, char *d
if (!dest_slot->data.ghash) {
dest_slot->data.ghash =
BLI_ghash_new(BLI_ghashutil_ptrhash,
- BLI_ghashutil_ptrcmp);
+ BLI_ghashutil_ptrcmp, "bmesh operator 2");
}
BLI_ghashIterator_init(&it, source_slot->data.ghash);