Fix use of uninitialized memory
This commit is contained in:
@@ -35,7 +35,7 @@ enum class Type : int8_t {
|
||||
struct Node {
|
||||
/* begin section that's copied to the next node */
|
||||
Node *parent = nullptr;
|
||||
int64_t maxVersion;
|
||||
int64_t maxVersion = std::numeric_limits<int64_t>::lowest();
|
||||
Entry entry;
|
||||
int16_t numChildren = 0;
|
||||
bool entryPresent = false;
|
||||
|
Reference in New Issue
Block a user