fix logical error in commit c7ef9429ae

This commit is contained in:
lixianliang 2016-01-26 13:46:41 +08:00
parent c34eaa1ce8
commit 36921aafeb

View File

@ -793,7 +793,7 @@ def checkFalsePositives(injection):
retVal = None
break
elif checkBooleanExpression("%d %d" % (randInt3, randInt2)):
elif not checkBooleanExpression("%d %d" % (randInt3, randInt2)):
retVal = None
break