mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix runtime error free()ing LV2 event buffers
This commit is contained in:
parent
3f8d0ddc3d
commit
12e1a6f73d
1 changed files with 1 additions and 1 deletions
|
|
@ -1108,7 +1108,7 @@ LV2Plugin::~LV2Plugin ()
|
|||
if (_atom_ev_buffers) {
|
||||
LV2_Evbuf** b = _atom_ev_buffers;
|
||||
while (*b) {
|
||||
free(*b);
|
||||
lv2_evbuf_free (*b);
|
||||
b++;
|
||||
}
|
||||
free(_atom_ev_buffers);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue