1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 16:21:12 +00:00

Fix race condition in thread_keypress

This commit is contained in:
jsteube 2016-06-26 15:55:23 +02:00
parent 057909fdfd
commit 5c338de519

View File

@ -18201,11 +18201,6 @@ int main (int argc, char **argv)
local_free (c_threads);
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT) && (data.devices_status != STATUS_BYPASS))
{
data.devices_status = STATUS_EXHAUSTED;
}
logfile_sub_var_uint ("status-after-work", data.devices_status);
data.restore = 0;
@ -18265,11 +18260,11 @@ int main (int argc, char **argv)
global_free (subid);
// from this point we handle bypass as exhausted
// from this point we handle bypass as running
if (data.devices_status == STATUS_BYPASS)
{
data.devices_status = STATUS_EXHAUSTED;
data.devices_status = STATUS_RUNNING;
}
// finalize task
@ -18337,6 +18332,11 @@ int main (int argc, char **argv)
// wait for non-interactive threads
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
{
data.devices_status = STATUS_EXHAUSTED;
}
for (uint thread_idx = 0; thread_idx < ni_threads_cnt; thread_idx++)
{
hc_thread_wait (1, &ni_threads[thread_idx]);