1
1

Initialize length to 0 instead of -1 (size_t might be unsigned and therefore

-1 is an issue).

This should go to the v1.1 branch...

This commit was SVN r9665.
Этот коммит содержится в:
Brian Barrett 2006-04-20 15:42:36 +00:00
родитель e737b0a106
Коммит 62afa63ded

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

@ -84,7 +84,7 @@ static orte_jobid_t jobid = ORTE_JOBID_MAX;
static orte_pointer_array_t *apps_pa;
static bool wait_for_job_completion = true;
static char *abort_msg = NULL;
static size_t abort_msg_len = -1;
static size_t abort_msg_len = 0;
static char *orterun_basename = NULL;
static int max_display_aborted = 1;
static int num_aborted = 0;