1
1

My eyes may be deceiving me....but I do believe these comparisons are backwards! I think we only really want to "free" these variables if they are NOT NULL - as opposed to "free"ing them if they ARE NULL.

This commit was SVN r12612.
Этот коммит содержится в:
Ralph Castain 2006-11-15 22:59:01 +00:00
родитель a17e27dfd5
Коммит 044898f4bf

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

@ -861,16 +861,16 @@ static int init_globals(void)
orterun_globals.displaymapatlaunch = false;
orterun_globals.num_procs = 0;
orterun_globals.exit_status = 0;
if( NULL == orterun_globals.hostfile )
if( NULL != orterun_globals.hostfile )
free( orterun_globals.hostfile );
orterun_globals.hostfile = NULL;
if( NULL == orterun_globals.env_val )
if( NULL != orterun_globals.env_val )
free( orterun_globals.env_val );
orterun_globals.env_val = NULL;
if( NULL == orterun_globals.appfile )
if( NULL != orterun_globals.appfile )
free( orterun_globals.appfile );
orterun_globals.appfile = NULL;
if( NULL == orterun_globals.wdir )
if( NULL != orterun_globals.wdir )
free( orterun_globals.wdir );
orterun_globals.wdir = NULL;
if( NULL != orterun_globals.path )