1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 08:10:59 +00:00

Fix minimum threads_per_block check

This commit is contained in:
Jens Steube 2019-06-06 20:46:20 +02:00
parent 0568c0746a
commit c2fc849e2c

View File

@ -1327,7 +1327,7 @@ int hc_cuModuleLoadDataExLog (hashcat_ctx_t *hashcat_ctx, CUmodule *module, cons
int opts_cnt = 6;
if (threads_per_block)
if ((threads_per_block > 0) && (threads_per_block < 1024))
{
opts[6] = CU_JIT_THREADS_PER_BLOCK;
vals[6] = (void *) threads_per_block;