1
1

Need to initialize the buffer in the contact_info command.

This commit was SVN r10563.
Этот коммит содержится в:
Ralph Castain 2006-06-29 14:57:10 +00:00
родитель 0482bbd94b
Коммит a90f8feb35

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

@ -914,6 +914,9 @@ static int orte_console_contactinfo(orte_console_input_command_t input_command)
return ORTE_SUCCESS;
}
/** initialize the buffer */
buffer = OBJ_NEW(orte_buffer_t);
/* Start the exchange */
ret = orte_console_send_command(ORTE_DAEMON_CONTACT_QUERY_CMD);
if (ORTE_SUCCESS != ret ){
@ -936,6 +939,9 @@ static int orte_console_contactinfo(orte_console_input_command_t input_command)
printf(str_response);
printf("\n");
/** cleanup the buffer */
OBJ_RELEASE(buffer);
return ORTE_SUCCESS;
}