1
1

Move fclose inside bracket to protect against NULL fp

This commit was SVN r31945.
Этот коммит содержится в:
Ralph Castain 2014-06-04 03:08:18 +00:00
родитель c7b229f03e
Коммит 5398158d5a

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

@ -268,8 +268,8 @@ static int init(void)
filename = opal_os_path(false, trk->directory, "scaling_setspeed", NULL);
if (NULL != (fp = fopen(filename, "rw"))) {
trk->setspeed = true;
fclose(fp);
}
fclose(fp);
free(filename);
/* add to our list */