Fix segfault in REAPER due to new vendor extension

This `effVendorSpecific` call would pass a non-zero non-pointer value to
the pointer argument, which would then of course result in segfaults.
This commit is contained in:
Robbert van der Helm
2021-02-15 21:08:41 +01:00
parent 39da1b1e1c
commit dc7c988623
4 changed files with 32 additions and 9 deletions
+3
View File
@@ -156,6 +156,9 @@ std::optional<std::string> opcode_to_string(bool is_dispatch, int opcode) {
case effGetSpeakerArrangement:
return "effGetSpeakerArrangement";
break;
case effVendorSpecific:
return "effVendorSpecific";
break;
case effGetTailSize:
return "effGetTailSize";
break;