[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56826] trunk/blender/source/blender/ render/intern/source/pipeline.c: Fix for missing finalization of memory blocks allocated in the Freestyle module .

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Wed May 15 19:06:56 CEST 2013


Revision: 56826
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56826
Author:   kjym3
Date:     2013-05-15 17:06:56 +0000 (Wed, 15 May 2013)
Log Message:
-----------
Fix for missing finalization of memory blocks allocated in the Freestyle module.
Suitable for inclusion in 2.67a.

Modified Paths:
--------------
    trunk/blender/source/blender/render/intern/source/pipeline.c

Modified: trunk/blender/source/blender/render/intern/source/pipeline.c
===================================================================
--- trunk/blender/source/blender/render/intern/source/pipeline.c	2013-05-15 17:00:53 UTC (rev 56825)
+++ trunk/blender/source/blender/render/intern/source/pipeline.c	2013-05-15 17:06:56 UTC (rev 56826)
@@ -428,6 +428,11 @@
 	while (RenderGlobal.renderlist.first) {
 		RE_FreeRender(RenderGlobal.renderlist.first);
 	}
+
+#ifdef WITH_FREESTYLE
+	/* finalize Freestyle */
+	FRS_exit();
+#endif
 }
 
 /* on file load, free all re */




More information about the Bf-blender-cvs mailing list