mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 22:25:30 +00:00
Nullptr fixes.
This commit is contained in:
parent
2cc39bc2be
commit
5f45c2c0d1
@ -283,7 +283,9 @@ bool DRC_TEST_PROVIDER_COPPER_CLEARANCE::testSingleLayerItemAgainstItem( BOARD_I
|
||||
std::shared_ptr<DRC_ITEM> drce = DRC_ITEM::Create( DRCE_SHORTING_ITEMS );
|
||||
wxString msg;
|
||||
|
||||
msg.Printf( _( "(nets %s and %s)" ), net->GetNetname(), otherNet->GetNetname() );
|
||||
msg.Printf( _( "(nets %s and %s)" ),
|
||||
net ? net->GetNetname() : _( "<no net>" ),
|
||||
otherNet ? otherNet->GetNetname() : _( "<no net>" ) );
|
||||
|
||||
drce->SetErrorMessage( drce->GetErrorText() + wxS( " " ) + msg );
|
||||
drce->SetItems( item, other );
|
||||
|
Loading…
Reference in New Issue
Block a user