Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MamziB committed Dec 23, 2024
1 parent 79512f4 commit 42ce2b3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/tl/mlx5/mcast/tl_mlx5_mcast_team.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,12 @@ ucc_status_t ucc_tl_mlx5_mcast_team_init(ucc_base_context_t *base_context,
return UCC_OK;

cleanup:
ucc_free(comm);
ucc_free(new_mcast_team);
ucc_free(oob_p2p_ctx);
ucc_free(comm->mcast_addr_list);
ucc_free(comm->lid_list);
ucc_free(comm->mgid_list);
comm->mcast_addr_list = NULL;
comm->lid_list = NULL;
comm->mgid_list = NULL;
ucc_free(comm);
ucc_free(new_mcast_team);
ucc_free(oob_p2p_ctx);
return status;
}

Expand Down

0 comments on commit 42ce2b3

Please sign in to comment.