add dummy check around hashcat_get_status () within inner2_loop to make coverity happy

pull/1106/head
philsmd 7 years ago
parent aa8fa5ff6e
commit 98129da7dc
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

@ -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…
Cancel
Save