From 16a6da932f4762628d85263d5e3d9de7a214a5e8 Mon Sep 17 00:00:00 2001 From: Jan Date: Sat, 16 Nov 2019 01:19:32 +0100 Subject: [PATCH] ZoneCommon: Fix AssetPoolStatic not initializing InfoPool in every case --- src/ZoneCommon/Pool/AssetPoolStatic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZoneCommon/Pool/AssetPoolStatic.h b/src/ZoneCommon/Pool/AssetPoolStatic.h index 4ebdfd50..5432d174 100644 --- a/src/ZoneCommon/Pool/AssetPoolStatic.h +++ b/src/ZoneCommon/Pool/AssetPoolStatic.h @@ -4,7 +4,6 @@ #include "AssetPool.h" #include -#include template class AssetPoolStatic final : public AssetPool @@ -53,6 +52,7 @@ public: { m_pool = nullptr; m_free = nullptr; + m_info_pool = nullptr; } }