1
1
This commit was SVN r5163.
Этот коммит содержится в:
Jeff Squyres 2005-04-04 22:03:37 +00:00
родитель 69f5aa1117
Коммит 11ea2b7e4e

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

@ -163,6 +163,12 @@ int ompi_unsetenv(const char *name, char ***env)
size_t len;
bool found;
/* Check for bozo case */
if (NULL == *env) {
return OMPI_SUCCESS;
}
/* Make something easy to compare to */
asprintf(&compare, "%s=", name);