mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 22:21:30 +00:00
Fixes #1441
This commit is contained in:
@@ -128,9 +128,16 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
|
||||
count += 1
|
||||
else:
|
||||
break
|
||||
|
||||
if count:
|
||||
seq1 = seq1[count:]
|
||||
seq2 = seq2[count:]
|
||||
try:
|
||||
_seq1 = seq1[count:]
|
||||
_seq2 = seq2[count:]
|
||||
except MemoryError:
|
||||
pass
|
||||
else:
|
||||
seq1 = _seq1
|
||||
seq2 = _seq2
|
||||
|
||||
while True:
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user