7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Fix uninitialized pointer in PROJECT_TREE

This commit is contained in:
Jon Evans 2023-10-20 12:47:31 -04:00
parent dd4c2a6001
commit 6c4a294c0a

View File

@ -46,7 +46,8 @@ PROJECT_TREE::PROJECT_TREE( PROJECT_TREE_PANE* parent ) :
wxTreeCtrl( parent, ID_PROJECT_TREE, wxDefaultPosition, wxDefaultSize,
PLATFORM_STYLE | wxTR_HAS_BUTTONS | wxTR_MULTIPLE, wxDefaultValidator,
wxT( "EDATreeCtrl" ) ),
m_imageList( nullptr )
m_imageList( nullptr ),
m_statusImageList( nullptr )
{
m_projectTreePane = parent;
m_gitCommon = new KIGIT_COMMON( nullptr );