diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-24 10:02:04 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-08-24 10:02:43 -0300 |
commit | c6e3394d55a96d43f2e60cfb4ea23b17f3335e54 (patch) | |
tree | 1e339da92a2f6c4c54e067c39f2d9e36dccd30b6 | |
parent | 571dab7d1e45168237041cb7814c6b2c176db2a1 (diff) |
Fix bug leading to crashes in CSG due to bug in OAHashMap, closes #20403
-rw-r--r-- | core/oa_hash_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } }; |