Commit 3cb168be authored by Maciej Suminski's avatar Maciej Suminski

Removed warnings.

parent b8e3ff8c
...@@ -588,10 +588,6 @@ void ZONE_CONTAINER::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList ) ...@@ -588,10 +588,6 @@ void ZONE_CONTAINER::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
{ {
wxString msg; wxString msg;
BOARD* board = (BOARD*) m_Parent;
wxASSERT( board );
msg = _( "Zone Outline" ); msg = _( "Zone Outline" );
// Display Cutout instead of Outline for holes inside a zone // Display Cutout instead of Outline for holes inside a zone
......
...@@ -1814,7 +1814,7 @@ void LEGACY_PLUGIN::loadNETINFO_ITEM() ...@@ -1814,7 +1814,7 @@ void LEGACY_PLUGIN::loadNETINFO_ITEM()
{ {
char buf[1024]; char buf[1024];
NETINFO_ITEM* net; NETINFO_ITEM* net = NULL;
char* line; char* line;
while( ( line = READLINE( m_reader ) ) != NULL ) while( ( line = READLINE( m_reader ) ) != NULL )
...@@ -1835,7 +1835,7 @@ void LEGACY_PLUGIN::loadNETINFO_ITEM() ...@@ -1835,7 +1835,7 @@ void LEGACY_PLUGIN::loadNETINFO_ITEM()
{ {
// net 0 should be already in list, so store this net // net 0 should be already in list, so store this net
// if it is not the net 0, or if the net 0 does not exists. // if it is not the net 0, or if the net 0 does not exists.
if( net->GetNet() > 0 || m_board->FindNet( 0 ) == NULL ) if( net != NULL && ( net->GetNet() > 0 || m_board->FindNet( 0 ) == NULL ) )
m_board->AppendNet( net ); m_board->AppendNet( net );
else else
delete net; delete net;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment