1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-25 16:08:18 +00:00

Evil bug fixed caused by variable-name collision

This commit is contained in:
Jens Steube 2016-06-22 11:58:00 +02:00
parent fe18f51406
commit c172da1bd2

View File

@ -15337,11 +15337,11 @@ int main (int argc, char **argv)
// now check if all device-memory sizes which depend on the kernel_accel_max amplifier are within its boundaries // now check if all device-memory sizes which depend on the kernel_accel_max amplifier are within its boundaries
// if not, decrease amplifier and try again // if not, decrease amplifier and try again
if (size_pws > device_param->device_maxmem_alloc) skip = 1; int memory_limit_hit = 0;
if (size_tmps > device_param->device_maxmem_alloc) skip = 1;
if (size_hooks > device_param->device_maxmem_alloc) skip = 1;
int skip = 0; if (size_pws > device_param->device_maxmem_alloc) memory_limit_hit = 1;
if (size_tmps > device_param->device_maxmem_alloc) memory_limit_hit = 1;
if (size_hooks > device_param->device_maxmem_alloc) memory_limit_hit = 1;
const u64 size_total const u64 size_total
= bitmap_size = bitmap_size
@ -15371,9 +15371,9 @@ int main (int argc, char **argv)
+ size_tm + size_tm
+ size_tmps; + size_tmps;
if (size_total > device_param->device_global_mem) skip = 1; if (size_total > device_param->device_global_mem) memory_limit_hit = 1;
if (skip == 1) if (memory_limit_hit == 1)
{ {
kernel_accel_max--; kernel_accel_max--;