diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index 2b2d7b99ac..bd7cd499a0 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -1210,7 +1210,9 @@ VST3PI::terminate () _controller->release (); } - _component->release (); + if (_component) { + _component->release (); + } _controller = 0; _component = 0;