Avoid missing null check in RC_TREE_MODEL::DeleteItems

(cherry picked from commit 19e27ef587)
This commit is contained in:
Marek Roszko 2022-08-17 07:11:15 -04:00 committed by Mark Roszko
parent 39940fe5ab
commit 64220656e9
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ void RC_TREE_MODEL::DeleteCurrentItem( bool aDeep )
void RC_TREE_MODEL::DeleteItems( bool aCurrentOnly, bool aIncludeExclusions, bool aDeep )
{
RC_TREE_NODE* current_node = ToNode( m_view->GetCurrentItem() );
RC_TREE_NODE* current_node = m_view ? ToNode( m_view->GetCurrentItem() ) : nullptr;
const std::shared_ptr<RC_ITEM> current_item = current_node ? current_node->m_RcItem : nullptr;
/// Keep a vector of elements to free after wxWidgets is definitely done accessing them