Fix call which should have been Release

This commit is contained in:
Mark Langen 2023-11-29 22:01:48 -08:00
parent 2fbe91aaa5
commit df68b05e2a

View File

@ -6,7 +6,7 @@ using namespace TglImpl;
GroupImpl::~GroupImpl() GroupImpl::~GroupImpl()
{ {
if (m_data) { if (m_data) {
free(m_data); m_data->Release();
m_data = NULL; m_data = NULL;
} }
} }