[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58843] trunk/blender/source/gameengine/ VideoTexture/FilterSource.h: BGE: Making sure m_buffV, m_buffU, and m_pitchUV are initialized in the FilterYV12 constructor.

Mitchell Stokes mogurijin at gmail.com
Sat Aug 3 07:01:41 CEST 2013


Revision: 58843
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58843
Author:   moguri
Date:     2013-08-03 05:01:40 +0000 (Sat, 03 Aug 2013)
Log Message:
-----------
BGE: Making sure m_buffV, m_buffU, and m_pitchUV are initialized in the FilterYV12 constructor.

Modified Paths:
--------------
    trunk/blender/source/gameengine/VideoTexture/FilterSource.h

Modified: trunk/blender/source/gameengine/VideoTexture/FilterSource.h
===================================================================
--- trunk/blender/source/gameengine/VideoTexture/FilterSource.h	2013-08-03 05:01:36 UTC (rev 58842)
+++ trunk/blender/source/gameengine/VideoTexture/FilterSource.h	2013-08-03 05:01:40 UTC (rev 58843)
@@ -164,7 +164,7 @@
 {
 public:
 	/// constructor
-	FilterYV12 (void) {}
+	FilterYV12 (void): m_buffV(NULL), m_buffU(NULL), m_pitchUV(0) {}
 	/// destructor
 	virtual ~FilterYV12 (void) {}
 




More information about the Bf-blender-cvs mailing list