Browse Source

Iterator safety.

(cherry picked from commit 541ca43d9e)
9.0
Jeff Young 4 months ago
parent
commit
8740748438
  1. 3
      pagelayout_editor/navlib/nl_pl_editor_plugin_impl.cpp

3
pagelayout_editor/navlib/nl_pl_editor_plugin_impl.cpp

@ -145,7 +145,8 @@ static void add_category( const std::string& aCategoryPath, CATEGORY_STORE& aCat
aCategoryStore.try_emplace( aCategoryStore.end(), aCategoryPath, categoryNode.get() );
parent_iter->second->push_back( std::move( categoryNode ) );
if( parent_iter != aCategoryStore.end() )
parent_iter->second->push_back( std::move( categoryNode ) );
}

Loading…
Cancel
Save