[Bf-blender-cvs] [07f53d6] master: Fix T44020: Crash exporting fluid sim to fbx

Sergey Sharybin noreply at git.blender.org
Tue Mar 17 09:00:56 CET 2015


Commit: 07f53d6454e9a6a0c104a4bb3dc1e074a654c05b
Author: Sergey Sharybin
Date:   Tue Mar 17 12:59:44 2015 +0500
Branches: master
https://developer.blender.org/rB07f53d6454e9a6a0c104a4bb3dc1e074a654c05b

Fix T44020: Crash exporting fluid sim to fbx

The issue is coming from wrong fluid modifier copy callback,
which might have left some pointers shared across original
and target fluid modifiers.

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

M	source/blender/modifiers/intern/MOD_fluidsim.c

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

diff --git a/source/blender/modifiers/intern/MOD_fluidsim.c b/source/blender/modifiers/intern/MOD_fluidsim.c
index 6344ec8..9f05d35 100644
--- a/source/blender/modifiers/intern/MOD_fluidsim.c
+++ b/source/blender/modifiers/intern/MOD_fluidsim.c
@@ -71,6 +71,9 @@ static void copyData(ModifierData *md, ModifierData *target)
 		MEM_freeN(tfluidmd->fss);
 	
 	tfluidmd->fss = MEM_dupallocN(fluidmd->fss);
+	if (tfluidmd->fss->meshVelocities != NULL) {
+		tfluidmd->fss->meshVelocities = MEM_dupallocN(tfluidmd->fss->meshVelocities);
+	}
 }




More information about the Bf-blender-cvs mailing list