forked from organicmaps/organicmaps-tmp
Fixed memory leak on iOS hardware textures destruction
This commit is contained in:
parent
3362c2ff0a
commit
3d06a9d4cb
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ HWTextureApple::HWTextureApple(ref_ptr<HWTextureAllocatorApple> allocator)
|
|||
|
||||
HWTextureApple::~HWTextureApple()
|
||||
{
|
||||
if (m_allocator == nullptr)
|
||||
if (m_allocator != nullptr)
|
||||
{
|
||||
m_allocator->CVDestroyTexture(m_texture);
|
||||
m_allocator->CVDestroyPixelBuffer(m_directBuffer);
|
||||
|
|
Loading…
Add table
Reference in a new issue