more memory leak fixes in demo and btSimpleBroadphase.

- deleting object (END key) needs to release
- call destructor of pair cache
This commit is contained in:
ejcoumans
2007-10-31 08:17:48 +00:00
parent a101719687
commit a146bbc293
3 changed files with 11 additions and 1 deletions

View File

@@ -77,6 +77,7 @@ btSimpleBroadphase::~btSimpleBroadphase()
if (m_ownsPairCache)
{
m_pairCache->~btOverlappingPairCache();
btAlignedFree(m_pairCache);
}
}