diff options
author | Anna Zaks <ganna@apple.com> | 2012-03-14 21:24:14 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-03-14 21:24:14 +0000 |
commit | 3183075ff18449594090aacb1793d66f58a95429 (patch) | |
tree | af48090613d4da0221f8e7e05b609403d6656b4f | |
parent | c0765a06ddf3dc7e975c4010a9a3ed5859e1d5c8 (diff) |
[analyzer] A fixup to r152734. Always initialize the flag.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152742 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h b/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h index 1599924e4a..950ee2f1ed 100644 --- a/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h +++ b/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h @@ -388,8 +388,8 @@ public: class PathDiagnosticCallPiece : public PathDiagnosticPiece { PathDiagnosticCallPiece(const Decl *callerD, const PathDiagnosticLocation &callReturnPos) - : PathDiagnosticPiece(Call), Caller(callerD), - Callee(0), callReturn(callReturnPos) {} + : PathDiagnosticPiece(Call), Caller(callerD), Callee(0), + NoExit(false), callReturn(callReturnPos) {} PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller) : PathDiagnosticPiece(Call), Caller(caller), Callee(0), |