1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-02 10:51:16 +00:00

Fix missing cleanup for new AUX kernels

This commit is contained in:
jsteube 2018-02-13 10:39:22 +01:00
parent 7d09ae93f2
commit 98b20526f4

View File

@ -6443,6 +6443,10 @@ void opencl_session_destroy (hashcat_ctx_t *hashcat_ctx)
device_param->kernel_memset = NULL;
device_param->kernel_atinit = NULL;
device_param->kernel_decompress = NULL;
device_param->kernel_aux1 = NULL;
device_param->kernel_aux2 = NULL;
device_param->kernel_aux3 = NULL;
device_param->kernel_aux4 = NULL;
device_param->program = NULL;
device_param->program_mp = NULL;
device_param->program_amp = NULL;