13
0

Yet another runtime free() API fix

See also 8c583f8e20
This commit is contained in:
Robin Gareus 2024-07-24 19:23:30 +02:00
parent 12e1a6f73d
commit 06962c7728
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -89,7 +89,7 @@ BufferSet::clear()
#endif #endif
for (LV2Buffers::iterator i = _lv2_buffers.begin(); i != _lv2_buffers.end(); ++i) { for (LV2Buffers::iterator i = _lv2_buffers.begin(); i != _lv2_buffers.end(); ++i) {
free ((*i).second); lv2_evbuf_free ((*i).second);
} }
_lv2_buffers.clear (); _lv2_buffers.clear ();