Fix initialization order

This avoids a conditional branch on an uninitialized value in valgrind.
This commit is contained in:
Simon Richter 2022-11-25 15:30:51 +01:00 committed by Seth Hillbrand
parent f2efb9c601
commit fbc321c4c1
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@ ZONE::ZONE( BOARD_ITEM_CONTAINER* aParent, bool aInFP ) :
SetLocalFlags( 0 ); // flags temporary used in zone calculations
m_fillVersion = 5; // set the "old" way to build filled polygon areas (< 6.0.x)
aParent->GetZoneSettings().ExportSetting( *this );
m_ZoneMinThickness = EDA_UNIT_UTILS::Mils2IU( pcbIUScale, ZONE_THICKNESS_MIL );
m_thermalReliefSpokeWidth = EDA_UNIT_UTILS::Mils2IU( pcbIUScale, ZONE_THERMAL_RELIEF_COPPER_WIDTH_MIL );
m_thermalReliefGap = EDA_UNIT_UTILS::Mils2IU( pcbIUScale, ZONE_THERMAL_RELIEF_GAP_MIL );
aParent->GetZoneSettings().ExportSetting( *this );
m_needRefill = false; // True only after edits.
}