1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

Merge pull request #1106 from philsmd/master

add dummy check around hashcat_get_status () within inner2_loop
This commit is contained in:
Jens Steube 2017-02-15 13:02:07 +01:00 committed by GitHub
commit 04ac71a36a

View File

@ -268,7 +268,10 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
logfile_sub_uint (runtime_start);
logfile_sub_uint (runtime_stop);
hashcat_get_status (hashcat_ctx, status_ctx->hashcat_status_final);
if (hashcat_get_status (hashcat_ctx, status_ctx->hashcat_status_final) == -1)
{
fprintf (stderr, "Initialization problem: the hashcat status monitoring function returned an unexpected value\n");
}
status_ctx->accessible = false;
@ -1219,7 +1222,7 @@ int hashcat_get_status (hashcat_ctx_t *hashcat_ctx, hashcat_status_t *hashcat_st
memset (hashcat_status, 0, sizeof (hashcat_status_t));
if (status_ctx == NULL) return -1; // ways too early
if (status_ctx == NULL) return -1; // way too early
if (status_ctx->accessible == false)
{