From c6e3394d55a96d43f2e60cfb4ea23b17f3335e54 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Fri, 24 Aug 2018 10:02:04 -0300 Subject: Fix bug leading to crashes in CSG due to bug in OAHashMap, closes #20403 --- core/oa_hash_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/oa_hash_map.h b/core/oa_hash_map.h index 0b3b40f30c..3a17fc21f3 100644 --- a/core/oa_hash_map.h +++ b/core/oa_hash_map.h @@ -320,7 +320,7 @@ public: memdelete_arr(keys); memdelete_arr(values); - memdelete(hashes); + memdelete_arr(hashes); } }; -- cgit v1.2.3