mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 20:39:17 +00:00
add dummy check around hashcat_get_status () within inner2_loop to make coverity happy
This commit is contained in:
parent
aa8fa5ff6e
commit
98129da7dc
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user