[analyzer] Fix typo in r167186.

llvm-svn: 167189
This commit is contained in:
Jordan Rose 2012-11-01 00:25:15 +00:00
parent 7318409802
commit 40bb1249eb
1 changed files with 1 additions and 1 deletions

View File

@ -1305,7 +1305,7 @@ ProgramStateRef MallocChecker::evalAssume(ProgramStateRef state,
// If the symbol is assumed to be NULL, remove it from consideration.
ConstraintManager &CMgr = state->getConstraintManager();
ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
if (AllocFailed.isConstrainedTrue())
if (!AllocFailed.isConstrainedTrue())
continue;
SymbolRef ReallocSym = I.getData().ReallocatedSym;