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

coverity#1215399 Uninitialized scalar field

Change-Id: If043310b3a4ac8dcc0ed63aeeeaffdfc9af8b46f
üst e76dc5b4
......@@ -274,8 +274,13 @@ private:
GLint m_2DColorID;
GLint m_MatrixID;
PickingShaderResources():
m_CommonProID(0) {}
PickingShaderResources()
: m_CommonProID(0)
, m_2DVertexID(0)
, m_2DColorID(0)
, m_MatrixID(0)
{
}
~PickingShaderResources()
{
......
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