From: Ted Kremenek Date: Fri, 4 Jan 2013 19:04:36 +0000 (+0000) Subject: Tighten code. No functionality change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4a1759ba11892b510a3b09ad8605aa82602d33e;p=clang Tighten code. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171501 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp index cfbcc53c17..56b338fd4c 100644 --- a/lib/StaticAnalyzer/Checkers/MallocChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/MallocChecker.cpp @@ -1500,16 +1500,16 @@ MallocChecker::MallocBugVisitor::VisitNode(const ExplodedNode *N, // Retrieve the associated statement. ProgramPoint ProgLoc = N->getLocation(); - if (StmtPoint *SP = dyn_cast(&ProgLoc)) + if (StmtPoint *SP = dyn_cast(&ProgLoc)) { S = SP->getStmt(); - else if (CallExitEnd *Exit = dyn_cast(&ProgLoc)) + } else if (CallExitEnd *Exit = dyn_cast(&ProgLoc)) { S = Exit->getCalleeContext()->getCallSite(); - // If an assumption was made on a branch, it should be caught - // here by looking at the state transition. - else if (BlockEdge *Edge = dyn_cast(&ProgLoc)) { - const CFGBlock *srcBlk = Edge->getSrc(); - S = srcBlk->getTerminator(); + } else if (BlockEdge *Edge = dyn_cast(&ProgLoc)) { + // If an assumption was made on a branch, it should be caught + // here by looking at the state transition. + S = Edge->getSrc()->getTerminator(); } + if (!S) return 0;