commit | fae4f1546ab0fa645aeebb8da069a41538a53779 | [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 | ecea4927dcdc62531bc538a33eb097b700c55854 | |
parent | 6a695cf3c273def77a2fd1cd8ec3a15225728cdf [diff] [blame] |
Correctly initialize Reader to null. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107994 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index fa5338d..5037c83 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp
@@ -37,7 +37,7 @@ using namespace clang; CompilerInstance::CompilerInstance() - : Invocation(new CompilerInvocation()) { + : Invocation(new CompilerInvocation()), Reader(0) { } CompilerInstance::~CompilerInstance() {