Fix for segmentation fault when the settings file doesn't exist.

This commit is contained in:
Andrzej Kapolka 2013-05-30 17:12:18 -07:00
parent 430b571c06
commit 224e5d666d

View file

@ -774,9 +774,9 @@ void Application::readSettingsFile() {
}
}
}
}
fclose(settingsFile);
fclose(settingsFile);
}
}
void Application::saveSettingsFile() {