From ea341289de95c4e4e63b2e6bf7bafe73f47582d5 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 20 May 2023 21:10:09 +0100 Subject: [PATCH] Fix uninitialized variable (Coverity report). --- pcbnew/teardrop/teardrop_parameters.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/teardrop/teardrop_parameters.h b/pcbnew/teardrop/teardrop_parameters.h index 7cd5cd298c..c9cdba3f0c 100644 --- a/pcbnew/teardrop/teardrop_parameters.h +++ b/pcbnew/teardrop/teardrop_parameters.h @@ -55,7 +55,8 @@ public: m_BestLengthRatio( 0.5), m_BestWidthRatio( 1.0 ), m_CurveSegCount( 0 ), - m_WidthtoSizeFilterRatio( 0.9 ) + m_WidthtoSizeFilterRatio( 0.9 ), + m_TdOnPadsInZones( false ) { }