Skip to content

Commit

Permalink
Fixed defect #43662 in Coverity list.
Browse files Browse the repository at this point in the history
  • Loading branch information
UltraCoderRU committed Jan 23, 2015
1 parent ce2d328 commit 5d25717
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/LineBlockTracer.cpp
Expand Up @@ -15,7 +15,23 @@


cLineBlockTracer::cLineBlockTracer(cWorld & a_World, cCallbacks & a_Callbacks) :
super(a_World, a_Callbacks)
super(a_World, a_Callbacks),
m_StartX(0.0),
m_StartY(0.0),
m_StartZ(0.0),
m_EndX(0.0),
m_EndY(0.0),
m_EndZ(0.0),
m_DiffX(0.0),
m_DiffY(0.0),
m_DiffZ(0.0),
m_DirX(0),
m_DirY(0),
m_DirZ(0),
m_CurrentX(0),
m_CurrentY(0),
m_CurrentZ(0),
m_CurrentFace(0)
{
}

Expand Down

0 comments on commit 5d25717

Please sign in to comment.