1
1

Attempt to silence new Coverity complaint by ensuring the string read from file is NULL terminated.

Этот коммит содержится в:
Ralph Castain 2015-04-10 07:54:37 -07:00
родитель 396700ad8b
Коммит e4f6f83b9d

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

@ -116,7 +116,8 @@ static int rte_init(void)
"singleton", orte_ess_singleton_server_uri);
return ORTE_ERROR;
}
if (NULL == fgets(input, 1024, fp)) {
memset(input, 0, 1024); // initialize the array to ensure a NULL termination
if (NULL == fgets(input, 1023, fp)) {
/* something malformed about file */
fclose(fp);
orte_show_help("help-orterun.txt", "orterun:ompi-server-file-bad", true,