13
0

Fix runtime error free()ing LV2 event buffers

This commit is contained in:
Robin Gareus 2024-07-24 17:47:54 +02:00
parent 3f8d0ddc3d
commit 12e1a6f73d
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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);