diff --git a/docs/changes.txt b/docs/changes.txt index bc52125f2..062d32f17 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -1,3 +1,11 @@ +* changes v3.20 -> ???: + +## +## Bugs +## + +- Fixed double free (actually, double fclose()) in opencl.c + * changes v3.10 -> v3.20: The hashcat core was completely refactored to be a MT-safe library (libhashcat). diff --git a/src/opencl.c b/src/opencl.c index a593c1dd1..490476c5d 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -75,8 +75,6 @@ static int ocl_check_dri (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx) if (vendor != 4098) return 0; - fclose (fd_drm); - // Now the problem is only with AMDGPU-Pro, not with oldschool AMD driver char buf[HCBUFSIZ_TINY];