Skip to content

Commit

Permalink
Add missing tciFree (#25974)
Browse files Browse the repository at this point in the history
Added missing tciFree to chpl_comm_ensure_progress. 

[Reviewed by @jabraham17, thank you.]
  • Loading branch information
jhh67 authored Sep 24, 2024
2 parents 827e02e + 23a0fdb commit 71ddda0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions runtime/src/comm/ofi/comm-ofi.c
Original file line number Diff line number Diff line change
Expand Up @@ -5745,6 +5745,7 @@ void chpl_comm_ensure_progress(void) {
// to begin with.
CHK_TRUE((tcip = tciAlloc()) != NULL);
(*tcip->ensureProgressFn)(tcip);
tciFree(tcip);
}
}

Expand Down

0 comments on commit 71ddda0

Please sign in to comment.