dustinlacewell / vcv-minilab3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Memory Leak

squinkylabs opened this issue · comments

The objects (structs) have no destructors to delete any of these things when your plugin goes away, so everything will leak.

Something like this applied to all dynamically created members would fix it:

MiniLog::~MidiLog() {
delete (binder);
}