From aefb3e5b90e0aec6f1475351e4c0ee6ad19be6c4 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 9 Apr 2020 00:40:00 +0200 Subject: [PATCH] Fix typo in entrypoint check --- src/wine-host/plugin-bridge.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wine-host/plugin-bridge.cpp b/src/wine-host/plugin-bridge.cpp index f4b225ed..54cb6ee6 100644 --- a/src/wine-host/plugin-bridge.cpp +++ b/src/wine-host/plugin-bridge.cpp @@ -82,7 +82,7 @@ PluginBridge::PluginBridge(std::string plugin_dll_path, reinterpret_cast(reinterpret_cast( GetProcAddress(plugin_handle.get(), name))); - if (name != nullptr) { + if (vst_entry_point != nullptr) { break; } }