diff --git a/docs/changes.txt b/docs/changes.txt index 0216d64d6..3f9ec9f40 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -49,6 +49,7 @@ - Fixed WPA/WPA2 cracking in case eapol frame is >= 248 byte - Fixed string not null terminated inside workaround for checking drm driver path - Fixed string not null terminated when reading maskfiles +- Fixed pointer to local outside scope when using -j or -k ## ## Technical diff --git a/src/dispatch.c b/src/dispatch.c index 880719d35..289bd11c7 100644 --- a/src/dispatch.c +++ b/src/dispatch.c @@ -150,10 +150,10 @@ static int calc_stdin (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_par // post-process rule engine + char rule_buf_out[BLOCK_SIZE] = { 0 }; + if (run_rule_engine ((int) user_options_extra->rule_len_l, user_options->rule_buf_l)) { - char rule_buf_out[BLOCK_SIZE] = { 0 }; - int rule_len_out = -1; if (line_len < BLOCK_SIZE) @@ -453,10 +453,10 @@ static int calc (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param) // post-process rule engine + char rule_buf_out[BLOCK_SIZE] = { 0 }; + if (run_rule_engine ((int) user_options_extra->rule_len_l, user_options->rule_buf_l)) { - char rule_buf_out[BLOCK_SIZE] = { 0 }; - int rule_len_out = -1; if (line_len < BLOCK_SIZE)