From 9d3d37b7e4c8e6d92bc7a02e28e32b9a11968de7 Mon Sep 17 00:00:00 2001 From: Howard Pritchard Date: Thu, 12 Dec 2024 09:49:16 -0700 Subject: [PATCH] comm: suppress compiler warning Signed-off-by: Howard Pritchard --- ompi/communicator/comm_cid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/communicator/comm_cid.c b/ompi/communicator/comm_cid.c index 0475d63b6f4..7154423c9a4 100644 --- a/ompi/communicator/comm_cid.c +++ b/ompi/communicator/comm_cid.c @@ -317,7 +317,7 @@ static int ompi_comm_ext_cid_new_block (ompi_communicator_t *newcomm, ompi_commu char *tag = NULL; size_t proc_count = 0, rproc_count = 0, tproc_count = 0, cid_base = 0UL, ninfo; int rc, leader_rank; - pmix_proc_t *procs; + pmix_proc_t *procs = NULL; void *grpinfo = NULL, *list = NULL; pmix_data_array_t darray;