diff --git a/src/effects/EffectManager.cpp b/src/effects/EffectManager.cpp index 14ca7b0be..e44009804 100644 --- a/src/effects/EffectManager.cpp +++ b/src/effects/EffectManager.cpp @@ -675,6 +675,12 @@ int EffectManager::GetRealtimeLatency() Effect *EffectManager::GetEffect(const PluginID & ID) { + // Must have a "valid" ID + if (ID.IsEmpty()) + { + return NULL; + } + // TODO: This is temporary and should be redone when all effects are converted if (mEffects.find(ID) == mEffects.end()) {