Browse Source

Potential fix for recursive error crash.

Fixes https://gitlab.com/kicad/code/kicad/issues/6471
6.0.7
Jeff Young 5 years ago
parent
commit
dbc7831d0c
  1. 2
      common/footprint_info.cpp

2
common/footprint_info.cpp

@ -103,7 +103,7 @@ void FOOTPRINT_LIST::DisplayErrors( wxTopLevelWindow* aWindow )
wxString msg;
while( const std::unique_ptr<IO_ERROR>& error = PopError() )
while( std::unique_ptr<IO_ERROR> error = PopError() )
{
wxString tmp = error->Problem();

Loading…
Cancel
Save