mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Patch for an Issue #990
This commit is contained in:
parent
9b32e69f26
commit
56965e3608
|
@ -840,7 +840,7 @@ def dictionaryAttack(attack_dict):
|
||||||
try:
|
try:
|
||||||
process.terminate()
|
process.terminate()
|
||||||
process.join()
|
process.join()
|
||||||
except OSError:
|
except (OSError, AttributeError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
@ -934,7 +934,7 @@ def dictionaryAttack(attack_dict):
|
||||||
try:
|
try:
|
||||||
process.terminate()
|
process.terminate()
|
||||||
process.join()
|
process.join()
|
||||||
except OSError:
|
except (OSError, AttributeError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user