diff --git a/meson_options.txt b/meson_options.txt index 48f8c13b..3ec087c3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -9,5 +9,5 @@ option( 'use-winedbg', type : 'boolean', value : false, - description : 'Whether to run the Wien VST host with GDB attached. Might not always be reliable.' + description : 'Whether to run the Wine VST host with GDB attached. Might not always be reliable.' ) diff --git a/src/plugin/host-bridge.cpp b/src/plugin/host-bridge.cpp index 06ad4268..35221585 100644 --- a/src/plugin/host-bridge.cpp +++ b/src/plugin/host-bridge.cpp @@ -312,6 +312,7 @@ class DispatchDataConverter : DefaultDataConverter { break; case effGetMidiKeyName: return *static_cast(data); + break; // Any VST host I've encountered has properly zeroed out these their // string buffers, but we'll add a list of opcodes that should // return a string just in case `DefaultDataConverter::read()` can't @@ -436,7 +437,7 @@ intptr_t HostBridge::dispatch(AEffect* /*plugin*/, logger.log("The plugin crashed during shutdown, ignoring"); } - // Boost.Process will send SIGKILL to the Wien host for us when this + // Boost.Process will send SIGKILL to the Wine host for us when this // class gets destroyed. Because the process is running a few // threads Wine will say something about a segfault (probably // related to `std::terminate`), but this doesn't seem to have any