BOARD_CONNECTED_ITEM::GetShortNetname(): protect against nullptr.
m_netinfo was not tested against nullptr in this method, although it is tested in all other places.
This commit is contained in:
parent
9f0c03db94
commit
035031d902
|
@ -133,7 +133,7 @@ wxString BOARD_CONNECTED_ITEM::GetNetnameMsg() const
|
|||
|
||||
wxString BOARD_CONNECTED_ITEM::GetShortNetname() const
|
||||
{
|
||||
return m_netinfo->GetShortNetname();
|
||||
return m_netinfo ? m_netinfo->GetShortNetname() : wxString();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue