1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Fix duplicate brain status bug

This commit is contained in:
R. Yushaev 2018-10-29 14:45:35 +01:00
parent 6aa6b2a675
commit 9951e9580d

View File

@ -124,7 +124,7 @@ u32 brain_compute_session (hashcat_ctx_t *hashcat_ctx)
qsort (out_bufs, out_idx, sizeof (char *), sort_by_string);
for (int i = 0; i < out_idx; i++)
for (int i = 0; i <= out_idx; i++)
{
const size_t out_len = strlen (out_bufs[out_idx]);