1
1

Per suggestion from Josh, init the sender field of the msg_packet object to INVALID

This commit was SVN r22330.
Этот коммит содержится в:
Ralph Castain 2009-12-17 20:03:35 +00:00
родитель 8ab962411c
Коммит a56e09c874

Просмотреть файл

@ -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)