minor: the step value should never be zero

pull/1090/head
philsmd 7 years ago
parent a969cb0768
commit 5ea1bd2a99
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

@ -2115,6 +2115,13 @@ static int hm_ADL_Overdrive_PowerControl_Set (hashcat_ctx_t *hashcat_ctx, int iA
return -1;
}
if (step == 0)
{
event_log_error (hashcat_ctx, "ADL PowerControl step invalid");
return -1;
}
if (level % step != 0)
{
event_log_error (hashcat_ctx, "ADL PowerControl step invalid");

Loading…
Cancel
Save