We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12fc944 commit afd82b9Copy full SHA for afd82b9
lib/utils/hash.py
@@ -717,8 +717,11 @@ def dictionaryAttack(attack_dict):
717
logger.warn(warnMsg)
718
719
for process in processes:
720
- process.terminate()
721
- process.join()
+ try:
+ process.terminate()
722
+ process.join()
723
+ except OSError:
724
+ pass
725
726
finally:
727
if retVal:
@@ -798,8 +801,11 @@ class Value():
798
801
799
802
800
803
804
805
806
807
808
809
810
811
0 commit comments