Zero-initialize the root pointer.

A casualty of one too many prospective refactors, and of
zero-initialized stacks.

Swift SVN r32456
This commit is contained in:
John McCall
2015-10-06 03:23:39 +00:00
parent 8fa1cf2257
commit 9f7a1e7d08

View File

@@ -341,7 +341,7 @@ private:
return root;
}
Node *Root;
Node *Root = nullptr;
public:
PrefixMap() {}