[Bf-blender-cvs] [aca403c819c] blender2.8: GHOST: Fix uninitialized values.

fclem noreply at git.blender.org
Mon Jun 11 19:07:57 CEST 2018


Commit: aca403c819c4fc9e1e7197bbe3027d43d114bfd6
Author: fclem
Date:   Mon Jun 11 17:07:37 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBaca403c819c4fc9e1e7197bbe3027d43d114bfd6

GHOST: Fix uninitialized values.

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

M	intern/ghost/intern/GHOST_ContextGLX.cpp
M	intern/ghost/intern/GHOST_ContextWGL.cpp

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

diff --git a/intern/ghost/intern/GHOST_ContextGLX.cpp b/intern/ghost/intern/GHOST_ContextGLX.cpp
index c94151a1a0e..1a995eb2cbc 100644
--- a/intern/ghost/intern/GHOST_ContextGLX.cpp
+++ b/intern/ghost/intern/GHOST_ContextGLX.cpp
@@ -72,7 +72,8 @@ GHOST_ContextGLX::GHOST_ContextGLX(
       m_contextMinorVersion(contextMinorVersion),
       m_contextFlags(contextFlags),
       m_contextResetNotificationStrategy(contextResetNotificationStrategy),
-      m_context(None)
+      m_context(None),
+      m_init(false)
 {
 	assert(m_display != NULL);
 }
diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp
index 35ebb2c78af..0331958c34a 100644
--- a/intern/ghost/intern/GHOST_ContextWGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextWGL.cpp
@@ -71,7 +71,8 @@ GHOST_ContextWGL::GHOST_ContextWGL(
       m_contextFlags(contextFlags),
       m_alphaBackground(alphaBackground),
       m_contextResetNotificationStrategy(contextResetNotificationStrategy),
-      m_hGLRC(NULL)
+      m_hGLRC(NULL),
+      m_init(false)
 #ifndef NDEBUG
       ,
       m_dummyVendor(NULL),



More information about the Bf-blender-cvs mailing list