Fix uninitialized variable. (Coverity)

This commit is contained in:
Jeff Young 2024-01-04 14:58:59 +00:00
parent 3fd81fe7c0
commit ffa3b27a4e
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ SCH_CONNECTION::SCH_CONNECTION( CONNECTION_GRAPH* aGraph ) :
}
SCH_CONNECTION::SCH_CONNECTION( SCH_CONNECTION& aOther )
SCH_CONNECTION::SCH_CONNECTION( SCH_CONNECTION& aOther ) :
m_parent( nullptr )
{
Reset();
Clone( aOther );