[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15810] branches/fluidcontrol/source/ blender/blenkernel/intern/pointcache.c: Fix crash on baking pointcache reported by nudel

Daniel Genrich daniel.genrich at gmx.net
Sun Jul 27 18:28:10 CEST 2008


Revision: 15810
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15810
Author:   genscher
Date:     2008-07-27 18:27:59 +0200 (Sun, 27 Jul 2008)

Log Message:
-----------
Fix crash on baking pointcache reported by nudel

Modified Paths:
--------------
    branches/fluidcontrol/source/blender/blenkernel/intern/pointcache.c

Modified: branches/fluidcontrol/source/blender/blenkernel/intern/pointcache.c
===================================================================
--- branches/fluidcontrol/source/blender/blenkernel/intern/pointcache.c	2008-07-27 16:18:27 UTC (rev 15809)
+++ branches/fluidcontrol/source/blender/blenkernel/intern/pointcache.c	2008-07-27 16:27:59 UTC (rev 15810)
@@ -166,11 +166,13 @@
 			BKE_ptcache_id_from_cloth(pid, ob, (ClothModifierData*)md);
 			BLI_addtail(lb, pid);
 		}
+		/*
 		else if(md->type == eModifierType_Fluidsim) {
 			pid= MEM_callocN(sizeof(PTCacheID), "PTCacheID");
 			BKE_ptcache_id_from_fluidsim(pid, ob, (FluidsimModifierData*)md);
 			BLI_addtail(lb, pid);
 		}
+		*/
 	}
 }
 





More information about the Bf-blender-cvs mailing list