[analyzer] Remove an unnecessary check.

llvm-svn: 145984
This commit is contained in:
Anna Zaks 2011-12-06 23:12:17 +00:00
parent 2f554c4c1b
commit 8629c0a4d0
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ void TaintTesterChecker::checkPostStmt(const Expr *E,
if (!State)
return;
if (E && State->isTainted(E)) {
if (State->isTainted(E)) {
if (ExplodedNode *N = C.addTransition()) {
initBugType();
BugReport *report = new BugReport(*BT, "tainted",N);