mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Couple of DREI patches
This commit is contained in:
@@ -598,7 +598,7 @@ class Metasploit:
|
||||
|
||||
except select.error as ex:
|
||||
# Reference: https://github.com/andymccurdy/redis-py/pull/743/commits/2b59b25bb08ea09e98aede1b1f23a270fc085a9f
|
||||
if ex[0] == errno.EINTR:
|
||||
if (ex[0] if six.PY2 else ex.errno) == errno.EINTR:
|
||||
continue
|
||||
else:
|
||||
return proc.returncode
|
||||
|
||||
Reference in New Issue
Block a user