From c94089b83299c987b950849ba9c52f723e3e4447 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 19 Dec 2020 17:00:57 +0100 Subject: [PATCH] Fix creating component handler proxy --- src/plugin/bridges/vst3-impls/plugin-proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/bridges/vst3-impls/plugin-proxy.cpp b/src/plugin/bridges/vst3-impls/plugin-proxy.cpp index 5cd99202..c2d42901 100644 --- a/src/plugin/bridges/vst3-impls/plugin-proxy.cpp +++ b/src/plugin/bridges/vst3-impls/plugin-proxy.cpp @@ -323,7 +323,7 @@ tresult PLUGIN_API Vst3PluginProxyImpl::setComponentHandler( component_handler = handler; component_handler_proxy_args = Vst3ComponentHandlerProxy::ConstructArgs( - host_application_context, instance_id()); + component_handler, instance_id()); } else { bridge.logger.log( "Null pointer passed to 'IEditController::setComponentHandler'");