mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix uninitialized variable. (Coverity)
This commit is contained in:
parent
3fd81fe7c0
commit
ffa3b27a4e
@ -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 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user