Browse Source

Fix crash when directly loading vst shell plugins

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.9.14
falkTX 5 years ago
parent
commit
2ed8264a9a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/backend/plugin/CarlaPluginVST2.cpp

+ 2
- 1
source/backend/plugin/CarlaPluginVST2.cpp View File

@@ -1850,7 +1850,8 @@ protected:
}

case audioMasterCurrentId:
ret = fEffect->uniqueID;
if (fEffect != nullptr)
ret = fEffect->uniqueID;
break;

case audioMasterIdle:


Loading…
Cancel
Save