Fix memory leak from SpatialAreaStore (#12120)

This commit is contained in:
Daroc Alden 2022-03-09 13:28:12 -05:00 committed by sfan5
parent d569dc45a8
commit 4b81ae1b35
1 changed files with 1 additions and 0 deletions

View File

@ -308,6 +308,7 @@ void SpatialAreaStore::getAreasInArea(std::vector<Area *> *result,
SpatialAreaStore::~SpatialAreaStore()
{
delete m_tree;
delete m_storagemanager;
}
SpatialAreaStore::SpatialAreaStore()