commit | 60876431b11e7033babc7b9ed72dc88075106781 | [log] [tgz] |
---|---|---|
author | Sebastian Redl <sebastian.redl@getdesigned.at> | Fri Jul 09 17:53:32 2010 +0000 |
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | Fri Jul 09 17:53:32 2010 +0000 |
tree | 27e3398ad0b86c73e42e711a5c5c2381c5529e76 | |
parent | f525a30d19e79156642a43a39ddeb99e9c5b7068 [diff] [blame] |
Correctly initialize Reader to null. llvm-svn: 107994
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index fa5338d..5037c83 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp
@@ -37,7 +37,7 @@ using namespace clang; CompilerInstance::CompilerInstance() - : Invocation(new CompilerInvocation()) { + : Invocation(new CompilerInvocation()), Reader(0) { } CompilerInstance::~CompilerInstance() {