Skip to content

Commit

Permalink
Made sure all member variables are initialized.
Browse files Browse the repository at this point in the history
Initialized member variable that was missing in the member initializer
list of the constructor. This issue was reported at runtime when compiling
with gcc and option -fsanitize=undefined.
  • Loading branch information
jriesmeier committed Jan 21, 2025
1 parent 1d205bc commit b7fba5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dcmiod/libsrc/modmultiframedimension.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2015-2024, Open Connections GmbH
* Copyright (C) 2015-2025, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
Expand Down Expand Up @@ -46,6 +46,7 @@ IODMultiframeDimensionModule::IODMultiframeDimensionModule()
: IODModule()
, m_DimensionIndexSequence()
, m_DimensionOrganizationSequence()
, m_CheckOnWrite(OFTrue)
{
resetRules();
}
Expand Down

0 comments on commit b7fba5a

Please sign in to comment.