1
1

init entire struct - as some fields (path) are not filled in

This commit was SVN r5774.
Этот коммит содержится в:
Tim Woodall 2005-05-19 19:15:41 +00:00
родитель 740714e311
Коммит 16edc813e9

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

@ -111,6 +111,10 @@ int orte_read_universe_setup_file(char *filename, orte_universe_t *info)
} }
} }
/* initialize info */
memset(info, 0, sizeof(orte_universe_t));
/* fill in universe info */
info->name = orte_getline(fp); info->name = orte_getline(fp);
if (NULL == info->name) { if (NULL == info->name) {
goto CLEANUP; goto CLEANUP;