Skip to content

Commit

Permalink
Merge pull request open-mpi#12803 from edgargabriel/topic/vulcan-aggr…
Browse files Browse the repository at this point in the history
…-list-leak

fcoll/vulcan: fix memory leak
  • Loading branch information
janjust committed Sep 10, 2024
2 parents 6237037 + 3fde6af commit 20d2335
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ompi/mca/fcoll/vulcan/fcoll_vulcan_file_write_all.c
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,10 @@ exit :
}
free(broken_iov_arrays);
free(fh->f_procs_in_group);
free(fh->f_aggr_list);
fh->f_procs_in_group=NULL;
fh->f_procs_per_group=0;
fh->f_aggr_list=NULL;
free(result_counts);
free(reqs);

Expand Down

0 comments on commit 20d2335

Please sign in to comment.