Skip to content

Commit

Permalink
Merge topic 'FixFastMarchingImageFilterBaseValgrindDefects'
Browse files Browse the repository at this point in the history
4082377 COMP: Fix valgrind-detected uninitialized members.
  • Loading branch information
Jon Haitz Legarreta authored and kwrobot committed Jun 23, 2017
2 parents f57badf + 4082377 commit a568c36
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ FastMarchingImageFilterBase() :
m_OverrideOutputInformation( false ),
m_LabelImage( LabelImageType::New() )
{
m_StartIndex.Fill(0);
m_LastIndex.Fill(0);

OutputSizeType outputSize;
outputSize.Fill(16);

Expand Down

0 comments on commit a568c36

Please sign in to comment.