ZoneCommon: Fix AssetPoolStatic not initializing InfoPool in every case

This commit is contained in:
Jan 2019-11-16 01:19:32 +01:00
parent 0e91dfc339
commit 16a6da932f

View File

@ -4,7 +4,6 @@
#include "AssetPool.h" #include "AssetPool.h"
#include <cstring> #include <cstring>
#include <map>
template <typename T> template <typename T>
class AssetPoolStatic final : public AssetPool<T> class AssetPoolStatic final : public AssetPool<T>
@ -53,6 +52,7 @@ public:
{ {
m_pool = nullptr; m_pool = nullptr;
m_free = nullptr; m_free = nullptr;
m_info_pool = nullptr;
} }
} }