Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd41ed commit adc8ac2Copy full SHA for adc8ac2
1 file changed
lib/controller/checks.py
@@ -719,16 +719,14 @@ def _():
719
kb.injection = injection
720
721
for i in xrange(conf.level):
722
- randInt1, randInt2, randInt3 = (_() for j in xrange(3))
+ while True:
723
+ randInt1, randInt2, randInt3 = (_() for j in xrange(3))
724
- randInt1 = min(randInt1, randInt2, randInt3)
725
- randInt3 = max(randInt1, randInt2, randInt3)
+ randInt1 = min(randInt1, randInt2, randInt3)
726
+ randInt3 = max(randInt1, randInt2, randInt3)
727
- while randInt1 >= randInt2:
728
- randInt2 = _()
729
-
730
- while randInt2 >= randInt3:
731
- randInt3 = _()
+ if randInt3 > randInt2 > randInt1:
+ break
732
733
if not checkBooleanExpression("%d=%d" % (randInt1, randInt1)):
734
retVal = None
0 commit comments