mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-02 20:37:38 +02:00
Null checks on SqliteSampleBlock::mpFactory
This commit is contained in:
@@ -325,7 +325,7 @@ void ModuleManager::Initialize(CommandHandler &cmdHandler)
|
||||
#endif
|
||||
|
||||
auto umodule = std::make_unique<Module>(files[i]);
|
||||
if (umodule->Load()) // it will get rejected if there are version problems
|
||||
if (umodule->Load()) // it will get rejected if there are version problems
|
||||
{
|
||||
auto module = umodule.get();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user