Skip to content

Commit

Permalink
Merge pull request #921 from rdesai16/minor_fix_teams
Browse files Browse the repository at this point in the history
Fix minor bug in shmem_team.c
  • Loading branch information
jdinan authored Dec 18, 2019
2 parents f9a640e + 468cdcf commit 7582921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shmem_team.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ int shmem_internal_team_destroy(shmem_internal_team_t *team)
if (team->contexts[i]->options & SHMEM_CTX_PRIVATE)
RAISE_WARN_MSG("Destroying team with unfreed private context (%zu)\n", i);
shmem_transport_quiet(team->contexts[i]);
shmem_transport_ctx_destroy(shmem_internal_team_world.contexts[i]);
shmem_transport_ctx_destroy(team->contexts[i]);
}
}
shmem_internal_team_pool[team->psync_idx] = NULL;
Expand Down

0 comments on commit 7582921

Please sign in to comment.