7
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:
Seth Hillbrand 2025-01-16 20:24:14 -08:00
parent e7bb7592a2
commit bc12591449

View File

@ -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,