1
mirror of https://github.com/hashcat/hashcat synced 2024-12-01 20:18:12 +01:00

Do not check hc_path_read() if hc_path_exist() failed for commandline hash argument

This commit is contained in:
Jens Steube 2017-01-27 23:18:22 +01:00
parent 3648efdb02
commit 518983d3a0

View File

@ -1321,11 +1321,14 @@ int user_options_check_files (hashcat_ctx_t *hashcat_ctx)
if (user_options_extra->hc_hash != NULL)
{
if (hc_path_read (user_options_extra->hc_hash) == false)
if (hc_path_exist (user_options_extra->hc_hash) == true)
{
event_log_error (hashcat_ctx, "%s: %m", user_options_extra->hc_hash);
if (hc_path_read (user_options_extra->hc_hash) == false)
{
event_log_error (hashcat_ctx, "%s: %m", user_options_extra->hc_hash);
return -1;
return -1;
}
}
}