From c2b18b363d62df87b8b7bad0d156b3d1b8b834c5 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 8 Dec 2008 16:16:40 +0000 Subject: [PATCH] Initialize a variable before use This commit was SVN r20080. --- orte/mca/rml/base/rml_base_contact.c | 1 + 1 file changed, 1 insertion(+) diff --git a/orte/mca/rml/base/rml_base_contact.c b/orte/mca/rml/base/rml_base_contact.c index 3c6c48505a..2d294ad75b 100644 --- a/orte/mca/rml/base/rml_base_contact.c +++ b/orte/mca/rml/base/rml_base_contact.c @@ -78,6 +78,7 @@ int orte_rml_base_update_contact_info(opal_buffer_t* data) /* unpack the data for each entry */ num_procs = 0; name.jobid = ORTE_JOBID_INVALID; + got_name = false; cnt = 1; while (ORTE_SUCCESS == (rc = opal_dss.unpack(data, &rml_uri, &cnt, OPAL_STRING))) {