From a56e09c87427b3c2b3af8a84f3ac29337a19afd9 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 17 Dec 2009 20:03:35 +0000 Subject: [PATCH] Per suggestion from Josh, init the sender field of the msg_packet object to INVALID This commit was SVN r22330. --- orte/mca/rml/base/rml_base_components.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/mca/rml/base/rml_base_components.c b/orte/mca/rml/base/rml_base_components.c index 2eb9551045..0a91af5221 100644 --- a/orte/mca/rml/base/rml_base_components.c +++ b/orte/mca/rml/base/rml_base_components.c @@ -61,6 +61,8 @@ static bool component_open_called = false; /* instantiate the msg_pkt object */ static void msg_pkt_constructor(orte_msg_packet_t *pkt) { + pkt->sender.jobid = ORTE_JOBID_INVALID; + pkt->sender.vpid = ORTE_VPID_INVALID; pkt->buffer = NULL; } static void msg_pkt_destructor(orte_msg_packet_t *pkt)