You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In src/mesh/mesh.isct.tpp about line 517, you use free() to free memory that allocated by "new" operator, there should be "delete[]". It crashes on MacOS. There also need some pointer check for safe. I already fixed locally, please update it like this:
In src/mesh/mesh.isct.tpp about line 517, you use free() to free memory that allocated by "new" operator, there should be "delete[]". It crashes on MacOS. There also need some pointer check for safe. I already fixed locally, please update it like this:
diff --git a/src/mesh/mesh.isct.tpp b/src/mesh/mesh.isct.tpp
index 6c48930..6d47855 100644
--- a/src/mesh/mesh.isct.tpp
+++ b/src/mesh/mesh.isct.tpp
@@ -517,21 +517,32 @@ public:
The text was updated successfully, but these errors were encountered: