feat(component): add missing initializer to CACHEENTRY

This commit is contained in:
fallenoak 2025-10-20 16:56:40 -05:00
parent 146b07c91e
commit 5857a66810
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -40,6 +40,7 @@ CACHEENTRY::CACHEENTRY() {
this->m_fileName[0] = '\0'; this->m_fileName[0] = '\0';
this->m_refCount = 0; this->m_refCount = 0;
this->m_memHandle = 0; this->m_memHandle = 0;
this->m_data = nullptr;
this->m_size = 0; this->m_size = 0;
this->m_missing = 0; this->m_missing = 0;
} }