From 52eedc71925bdcbf91bdd9a8b1812ce8443a2f7f Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 12 Jan 2018 21:25:45 +0100 Subject: [PATCH] Footprint editor: Fix a crash when trying to create a custom pad from selected graphic primitives. --- pcbnew/class_drawsegment.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pcbnew/class_drawsegment.cpp b/pcbnew/class_drawsegment.cpp index ed3f3a1e7b..822b0e1e22 100644 --- a/pcbnew/class_drawsegment.cpp +++ b/pcbnew/class_drawsegment.cpp @@ -810,11 +810,14 @@ const std::vector DRAWSEGMENT::GetPolyPoints() const { std::vector rv; - if( !m_Poly.IsEmpty() ) + if( m_Poly.OutlineCount() ) { - for ( auto iter = m_Poly.CIterate(); iter; iter++ ) + if( m_Poly.COutline( 0 ).PointCount() ) { - rv.push_back( wxPoint( iter->x, iter->y ) ); + for ( auto iter = m_Poly.CIterate(); iter; iter++ ) + { + rv.push_back( wxPoint( iter->x, iter->y ) ); + } } }