1
1

Fixes trac:1667. Ensure to fill in the source_file if it was requested.

This commit was SVN r20067.

The following Trac tickets were found above:
  Ticket 1667 --> https://svn.open-mpi.org/trac/ompi/ticket/1667
Этот коммит содержится в:
Jeff Squyres 2008-12-03 22:17:50 +00:00
родитель a07660aea8
Коммит 06097db928

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

@ -1979,6 +1979,12 @@ static bool lookup_file(mca_base_param_t *param,
}
param->mbp_file_value_set = true;
/* If the caller requested to know what file we found the
value in, give them a copy of the filename pointer */
if (NULL != source_file) {
*source_file = param->mbp_source_file;
}
/* Since this is now cached on the param, we might as well
remove it from the list and make future file lookups
faster */