Skip to content

Commit

Permalink
fix use of uninitialized.
Browse files Browse the repository at this point in the history
llvm-svn: 274909
  • Loading branch information
espindola committed Jul 8, 2016
1 parent 950419f commit 6091492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lld/ELF/Symbols.h
Expand Up @@ -230,7 +230,7 @@ template <class ELFT> class DefinedRegular : public Defined {

// If non-null the symbol has a Thunk that may be used as an alternative
// destination for callers of this Symbol.
Thunk<ELFT> *ThunkData;
Thunk<ELFT> *ThunkData = nullptr;

private:
static InputSectionBase<ELFT> *NullInputSection;
Expand Down

0 comments on commit 6091492

Please sign in to comment.