From 98b20526f48656e9650ed7592c77f739e0c8cdc5 Mon Sep 17 00:00:00 2001 From: jsteube Date: Tue, 13 Feb 2018 10:39:22 +0100 Subject: [PATCH] Fix missing cleanup for new AUX kernels --- src/opencl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/opencl.c b/src/opencl.c index c79bc7d97..d3ec3dc8a 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -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;