summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-08-24 10:02:04 -0300
committerJuan Linietsky <reduzio@gmail.com>2018-08-24 10:02:43 -0300
commitc6e3394d55a96d43f2e60cfb4ea23b17f3335e54 (patch)
tree1e339da92a2f6c4c54e067c39f2d9e36dccd30b6
parent571dab7d1e45168237041cb7814c6b2c176db2a1 (diff)
Fix bug leading to crashes in CSG due to bug in OAHashMap, closes #20403
-rw-r--r--core/oa_hash_map.h2
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);
}
};