mixxxdj / mixxx

Mixxx is Free DJ software that gives you everything you need to perform live mixes.
http://mixxx.org
Other
4.25k stars 1.24k forks source link

Don't call virtual member functions in destructors #13228

Open Swiftb0y opened 1 month ago

Swiftb0y commented 1 month ago

After accidentally enabling clang-analyzer-optin.cplusplus.VirtualCall I noticed there were a bunch of virtual calls in destructors (for example cleanup() in Analyzer, ControllerScriptEngineBase::shutdown(), also for constructors ControllerScriptEngineBase::initialize()) that can result in UB. We should fix that. See https://github.com/Samsung/GearVRf/issues/1567 for a good indepth explanation of the issue.