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-04-20 22:00:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-20 22:00:35 +0400
commitb264f613df91855fcff3d624195087c3c2b29f30 (patch)
tree8354a309381a5c25d0df35614542178554e955d3 /source/blender/editors/sculpt_paint/sculpt_uv.c
parent25c9ea8cb3215408d6c3de7b06a5fe4b07e4b435 (diff)
Fix incorrect ghash free
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_uv.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_uv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_uv.c b/source/blender/editors/sculpt_paint/sculpt_uv.c
index d47840d1504..d02bd73e1b3 100644
--- a/source/blender/editors/sculpt_paint/sculpt_uv.c
+++ b/source/blender/editors/sculpt_paint/sculpt_uv.c
@@ -672,7 +672,7 @@ static UvSculptData *uv_sculpt_stroke_init(bContext *C, wmOperator *op, const wm
MEM_freeN(uniqueUv);
}
if (edgeHash) {
- MEM_freeN(edgeHash);
+ BLI_ghash_free(edgeHash, NULL, NULL);
}
uv_sculpt_stroke_exit(C, op);
return NULL;