1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 20:39:17 +00:00

Give some extra space for plain_buf1 in case $HEX[...] is added

This commit is contained in:
jsteube 2016-12-31 15:17:01 +01:00
parent a3159625b3
commit d36cc4c5cb

View File

@ -723,8 +723,8 @@ char *status_get_input_candidates_dev (const hashcat_ctx_t *hashcat_ctx, const i
plain_t plain1 = { 0, 0, 0, outerloop_first, innerloop_first };
plain_t plain2 = { 0, 0, 0, outerloop_last, innerloop_last };
u32 plain_buf1[32] = { 0 };
u32 plain_buf2[32] = { 0 };
u32 plain_buf1[40] = { 0 };
u32 plain_buf2[40] = { 0 };
u8 *plain_ptr1 = (u8 *) plain_buf1;
u8 *plain_ptr2 = (u8 *) plain_buf2;