Skip to content

Commit

Permalink
Fix uninitialized member
Browse files Browse the repository at this point in the history
  • Loading branch information
scrawl committed Feb 5, 2014
1 parent ffe19e7 commit 7907181
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/openmw/mwmechanics/pathfinding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ namespace
namespace MWMechanics
{
PathFinder::PathFinder()
:mIsPathConstructed(false),mIsGraphConstructed(false)
: mIsPathConstructed(false),
mIsGraphConstructed(false),
mCell(NULL)
{
}

Expand Down

0 comments on commit 7907181

Please sign in to comment.