Merge pull request #15512 from mattgbio/missing-delete-TDBStore

TDBStore: Add missing delete for _inc_set_handle
pull/15517/head
Martin Kojtal 2024-05-21 21:35:37 +02:00 committed by GitHub
commit e04a55f32b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -1165,6 +1165,7 @@ int TDBStore::deinit()
delete[] ram_table;
delete[] _work_buf;
delete[] _key_buf;
delete reinterpret_cast<inc_set_handle_t *>(_inc_set_handle);
}
_is_initialized = false;