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:
jean-pierre charras 2022-11-19 11:16:47 +01:00
parent 9f0c03db94
commit 035031d902
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}