1
1

Protect for the CLEANUP case where tmp hasn't been set yet

Refs trac:4536

This commit was SVN r31438.

The following Trac tickets were found above:
  Ticket 4536 --> https://svn.open-mpi.org/trac/ompi/ticket/4536
This commit is contained in:
Jeff Squyres 2014-04-18 23:34:53 +00:00
parent 482b465c05
commit 38a27b858d

View File

@ -9,6 +9,7 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -475,7 +476,7 @@ int
orte_session_dir_cleanup(orte_jobid_t jobid)
{
int rc = ORTE_SUCCESS;
char *tmp;
char *tmp = NULL;
char *job_session_dir=NULL;
if (!orte_create_session_dirs) {
@ -555,7 +556,7 @@ orte_session_dir_cleanup(orte_jobid_t jobid)
}
CLEANUP:
free(tmp);
if (NULL != tmp) free(tmp);
if (NULL != job_session_dir) free(job_session_dir);
return rc;
}