1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

VST3: Don't add PluginDescription to results array if loadFrom() or initialize() fails

This commit is contained in:
ed 2019-10-21 11:10:38 +01:00
parent 608001811f
commit e86b1a8818

View file

@ -774,7 +774,8 @@ struct DescriptionFactory
}
}
result = performOnDescription (desc);
if (desc.uid != 0)
result = performOnDescription (desc);
if (result.failed())
break;