From 5857a668104c00f5e71264f774035af3dda501f1 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 20 Oct 2025 16:56:40 -0500 Subject: [PATCH] feat(component): add missing initializer to CACHEENTRY --- src/component/Texture.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/component/Texture.cpp b/src/component/Texture.cpp index 9ce2bf0..d079592 100644 --- a/src/component/Texture.cpp +++ b/src/component/Texture.cpp @@ -40,6 +40,7 @@ CACHEENTRY::CACHEENTRY() { this->m_fileName[0] = '\0'; this->m_refCount = 0; this->m_memHandle = 0; + this->m_data = nullptr; this->m_size = 0; this->m_missing = 0; }