mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-23 00:28:11 +00:00
Fix duplicate brain status bug
This commit is contained in:
parent
6aa6b2a675
commit
9951e9580d
@ -124,7 +124,7 @@ u32 brain_compute_session (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
qsort (out_bufs, out_idx, sizeof (char *), sort_by_string);
|
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]);
|
const size_t out_len = strlen (out_bufs[out_idx]);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user