Fix potential issue with non-initialized label

This commit is contained in:
Marc Gilleron 2021-01-23 01:32:42 +00:00
parent 7af9c193b8
commit 9ebe1d32c0

View File

@ -72,7 +72,7 @@ private:
struct Stat {
int value;
Label *label;
Label *label = nullptr;
};
FixedArray<Stat, STAT_COUNT> _stats;