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" ),
|
DisplayErrorMessage( NULL, _( "Error loading project footprint library table" ),
|
||||||
ioe.What() );
|
ioe.What() );
|
||||||
}
|
}
|
||||||
|
catch( ... )
|
||||||
|
{
|
||||||
|
DisplayErrorMessage( NULL, _( "Error loading project footprint library table" ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return tbl;
|
return tbl;
|
||||||
|
|
Loading…
Reference in New Issue