mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-11 02:26:19 -04:00
It's not a good idea to allocate the buffer for VST chunk data on the stack as chunks might become quite big (several megabytes) and thus could cause a stack overflow. Fix this by using new/delete.