From: Ted Kremenek Date: Thu, 3 Jan 2008 22:09:27 +0000 (+0000) Subject: Fixed misuse of pointer within SimulVertex::addPredecessor() X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1dcf0a4546df4edbc7e8c660de0be46ae60c95cc;p=clang Fixed misuse of pointer within SimulVertex::addPredecessor() git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45551 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/SimulVertex.h b/include/clang/Analysis/PathSensitive/SimulVertex.h index 627df5b206..0fb1db0a45 100644 --- a/include/clang/Analysis/PathSensitive/SimulVertex.h +++ b/include/clang/Analysis/PathSensitive/SimulVertex.h @@ -95,7 +95,7 @@ public: // Manipulation of successors/predecessors. void addPredecessor(SimulVertex* V) { Preds.push_back(V); - V.Succs.push_back(V); + V->Succs.push_back(V); } };