From aca403c819c4fc9e1e7197bbe3027d43d114bfd6 Mon Sep 17 00:00:00 2001 From: fclem Date: Mon, 11 Jun 2018 17:07:37 +0200 Subject: GHOST: Fix uninitialized values. --- intern/ghost/intern/GHOST_ContextGLX.cpp | 3 ++- intern/ghost/intern/GHOST_ContextWGL.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'intern') 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), -- cgit v1.2.3