You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a new instance of a VST plugin to a DAW, occasionally this causes the DAW to crash on a SEGFAULT, this was narrowed down to happen somewhere within baseview, or one of the dependencies of baseview (possibly glowcoil/raw-gl-context). Notably this seems only to happen after some (or all) instances of the plugin have been closed, and the plugin is added again.
Debugging with gdb revealed the following stacktrace:
#0 0x00007ffc74374298 in rust_eh_personality ()
from C:\Users\ <omitted full path> \ <name_of_plugin.dll>
#1 0x00007ffcca8d0b54 in ntdll!KiUserCallbackDispatcher () from C:\WINDOWS\SYSTEM32\ntdll.dll
#2 0x0000000000000000 in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
Context
This was tested on Windows 10.0.19041
This was tested on Intel UHD Graphics 620 and NVIDIA GeForce MX150 graphics cards.
This was tested on Ableton Live 10.0.1 and FL Studio 20.8 build 2115.
This happens regardless of whether the plugin was compiled with release or debug profile.
This happens regardless of whether the plugin uses geom3trik/tuix + baseview or imgui + baseview, which makes us think it has to do with baseview.
Follow the instructions in the README.md to compile and install the plugin dll into your DAW of choice
Add the plugin to your effect rack
Wait about a minute or more
Remove the plugin from the rack
Wait about a minute or more
Repeat from point 3 until it crashes.
Note: the timing might not be relevant.
Note: defocussing the DAW window while waiting between steps might have something to do with it
Note: adding the plugin to a different effect rack / channel every time might make it crash faster, or maybe it's placebo
The text was updated successfully, but these errors were encountered:
One idea is to build the library with Address Sanitizer. You can create a file under the project repo, ".cargo/config.toml", with contents:
[build]
rustflags = ["-Z", "sanitizer=address"] # custom flags to pass to all compiler invocations
Unfortunately rustc doesn't support sanitizers on Windows, despite LLVM and Clang supporting-ish ASAN on Windows (with MSVC ABI, idk about MinGW). Perhaps someone else can test on Linux?
Description
When adding a new instance of a VST plugin to a DAW, occasionally this causes the DAW to crash on a SEGFAULT, this was narrowed down to happen somewhere within baseview, or one of the dependencies of baseview (possibly glowcoil/raw-gl-context). Notably this seems only to happen after some (or all) instances of the plugin have been closed, and the plugin is added again.
Debugging with gdb revealed the following stacktrace:
Context
release
ordebug
profile.How to Reproduce
Note: the timing might not be relevant.
Note: defocussing the DAW window while waiting between steps might have something to do with it
Note: adding the plugin to a different effect rack / channel every time might make it crash faster, or maybe it's placebo
The text was updated successfully, but these errors were encountered: