mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:05:30 +00:00
Use proper indexing for board poly
In rare cases the fracture call will reduce the outline count, leading to crashes when we dereference them. Fixes https://gitlab.com/kicad/code/kicad/-/issues/19664
This commit is contained in:
parent
e7bb7592a2
commit
bc12591449
@ -433,7 +433,7 @@ void RENDER_3D_RAYTRACE_BASE::Reload( REPORTER* aStatusReporter, REPORTER* aWarn
|
||||
|
||||
boardPolyCopy.Fracture();
|
||||
|
||||
for( int ii = 0; ii < outlineCount; ii++ )
|
||||
for( int ii = 0; ii < boardPolyCopy.OutlineCount(); ii++ )
|
||||
{
|
||||
ConvertPolygonToBlocks( boardPolyCopy, *m_outlineBoard2dObjects,
|
||||
m_boardAdapter.BiuTo3dUnits(), divFactor,
|
||||
|
Loading…
Reference in New Issue
Block a user