fix use of uninitialized.

llvm-svn: 274909
This commit is contained in:
Rafael Espindola 2016-07-08 19:28:55 +00:00
parent 950419f948
commit 6091492e2c
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ public:
// If non-null the symbol has a Thunk that may be used as an alternative // If non-null the symbol has a Thunk that may be used as an alternative
// destination for callers of this Symbol. // destination for callers of this Symbol.
Thunk<ELFT> *ThunkData; Thunk<ELFT> *ThunkData = nullptr;
private: private:
static InputSectionBase<ELFT> *NullInputSection; static InputSectionBase<ELFT> *NullInputSection;