1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-09 05:01:57 +01:00

Fix Windows build

This commit is contained in:
Paul Licameli
2017-12-31 20:03:52 -05:00
parent 765ca0c813
commit 2e8a73bab1
9 changed files with 23 additions and 12 deletions

View File

@@ -319,7 +319,8 @@ unsigned BuiltinEffectsModule::DiscoverPluginsAtPath(
auto effect = Instantiate(path);
if (effect)
{
callback(this, effect.get());
if (callback)
callback(this, effect.get());
return 1;
}