Skip to content

Commit

Permalink
Merge pull request #39 from jabo17/memory_leak_patch
Browse files Browse the repository at this point in the history
fix: memory leak in graph_access of wmis project
  • Loading branch information
schulzchristian authored Aug 1, 2024
2 parents 2b2f633 + 6cfdedc commit fa69ba4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions wmis/extern/KaHIP/lib/data_structure/graph_access.h
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,9 @@ inline void graph_access::set_partition_count(PartitionID count) {
}

inline int graph_access::build_from_metis(int n, int* xadj, int* adjncy) {
if(graphref != nullptr) {
delete graphref;
}
graphref = new basicGraph();
start_construction(n, xadj[n]);

Expand All @@ -467,6 +470,9 @@ inline int graph_access::build_from_metis(int n, int* xadj, int* adjncy) {
}

inline int graph_access::build_from_metis_weighted(int n, int* xadj, int* adjncy, int * vwgt, int* adjwgt) {
if(graphref != nullptr) {
delete graphref;
}
graphref = new basicGraph();
start_construction(n, xadj[n]);

Expand Down

0 comments on commit fa69ba4

Please sign in to comment.