mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Also catch null dereference in case wxASSERT was skipped.
This commit is contained in:
parent
6a47d0f507
commit
0f4c56cbbd
@ -431,6 +431,10 @@ FP_LIB_TABLE* PROJECT::PcbFootprintLibs( KIWAY& aKiway )
|
||||
DisplayErrorMessage( NULL, _( "Error loading project footprint library table" ),
|
||||
ioe.What() );
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
DisplayErrorMessage( NULL, _( "Error loading project footprint library table" ) );
|
||||
}
|
||||
}
|
||||
|
||||
return tbl;
|
||||
|
Loading…
x
Reference in New Issue
Block a user