Kaydet (Commit) 37a00689 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#984143 Uninitialized scalar field

Change-Id: I2940b86ce45dfc6b7399b76c84f88c5658f4a923
üst db030764
...@@ -1758,19 +1758,35 @@ void OGLTransitionerImpl::disposing() ...@@ -1758,19 +1758,35 @@ void OGLTransitionerImpl::disposing()
mxView.clear(); mxView.clear();
} }
OGLTransitionerImpl::OGLTransitionerImpl() : OGLTransitionerImpl::OGLTransitionerImpl()
OGLTransitionerImplBase(m_aMutex), : OGLTransitionerImplBase(m_aMutex)
GLleavingSlide( 0 ), , GLleavingSlide(0)
GLenteringSlide( 0 ), , GLenteringSlide(0)
pWindow( NULL ), , pWindow(NULL)
mxView(), , mxView()
EnteringBytes(), , EnteringBytes()
LeavingBytes(), , LeavingBytes()
mbRestoreSync( false ), #if defined( GLX_EXT_texture_from_pixmap )
mbUseLeavingPixmap( false ), , LeavingPixmap(0)
mbUseEnteringPixmap( false ), , EnteringPixmap(0)
SlideBitmapLayout(), #endif
SlideSize() , mbRestoreSync(false)
, mbUseLeavingPixmap(false)
, mbUseEnteringPixmap(false)
, mbFreeLeavingPixmap(false)
, mbFreeEnteringPixmap(false)
#ifdef UNX
, maLeavingPixmap(0)
, maEnteringPixmap(0)
#endif
, SlideBitmapLayout()
, SlideSize()
#ifdef UNX
, mnGLXVersion(0.0)
#endif
, mbTextureFromPixmap(false)
, mbGenerateMipmap(false)
, mbHasTFPVisual(false)
{ {
memset(&GLWin, 0, sizeof(GLWin)); memset(&GLWin, 0, sizeof(GLWin));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment