[Bf-blender-cvs] [6ff4babfd42] master: Fix T60795: Crash when joining objects with shape keys.

Bastien Montagne noreply at git.blender.org
Thu Jan 24 14:33:34 CET 2019


Commit: 6ff4babfd420aa9697bfab193577f879db414265
Author: Bastien Montagne
Date:   Thu Jan 24 14:31:47 2019 +0100
Branches: master
https://developer.blender.org/rB6ff4babfd420aa9697bfab193577f879db414265

Fix T60795: Crash when joining objects with shape keys.

Stupid mistake really, cannot use NO_MAIN here, temp shapekey is in
Main. Using/fully supporting out-of-main temp IDs is still a bit WIP...

===================================================================

M	source/blender/editors/mesh/meshtools.c

===================================================================

diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c
index 05c0fddfda0..f67ee0651f4 100644
--- a/source/blender/editors/mesh/meshtools.c
+++ b/source/blender/editors/mesh/meshtools.c
@@ -586,7 +586,7 @@ int join_mesh_exec(bContext *C, wmOperator *op)
 	/* free temp copy of destination shapekeys (if applicable) */
 	if (nkey) {
 		/* We can assume nobody is using that ID currently. */
-		BKE_id_free_ex(bmain, nkey, LIB_ID_FREE_NO_MAIN | LIB_ID_FREE_NO_UI_USER | LIB_ID_FREE_NO_USER_REFCOUNT, false);
+		BKE_id_free_ex(bmain, nkey, LIB_ID_FREE_NO_UI_USER, false);
 	}
 
 	/* ensure newly inserted keys are time sorted */



More information about the Bf-blender-cvs mailing list