We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7803087 commit 0df4889Copy full SHA for 0df4889
Source/Utility/SettingsFile.cpp
@@ -576,6 +576,11 @@ void SettingsFile::reloadSettings()
576
}
577
578
auto const newTree = ValueTree::fromXml(newSettings);
579
+ if(!newTree.isValid())
580
+ {
581
+ releaseFileLock();
582
+ return;
583
+ }
584
585
// Children shouldn't be overwritten as that would break some valueTree links
586
for (auto child : settingsTree) {
0 commit comments