1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Merge pull request #3598 from Chick3nman/patch-1

Fixes #3596: bug in --stdout w/ rules
This commit is contained in:
Jens Steube 2023-01-28 20:18:11 +01:00 committed by GitHub
commit 708c3de9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,7 @@ int process_stdout (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param,
out_push (&out, plain_ptr, plain_len);
memset (plain_ptr, 0, BUF_SZ);
memset (plain_ptr, 0, PW_MAX);
}
pw_idx++;