mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
Another attempt fixing crash at exit on windows.
This commit is contained in:
parent
b40717604c
commit
1972cf966e
1 changed files with 4 additions and 0 deletions
|
|
@ -2527,6 +2527,9 @@ LV2World::LV2World()
|
|||
|
||||
LV2World::~LV2World()
|
||||
{
|
||||
if (!world) {
|
||||
return;
|
||||
}
|
||||
#ifdef HAVE_LV2_1_2_0
|
||||
lilv_node_free(bufz_nominalBlockLength);
|
||||
lilv_node_free(bufz_fixedBlockLength);
|
||||
|
|
@ -2570,6 +2573,7 @@ LV2World::~LV2World()
|
|||
lilv_node_free(atom_Chunk);
|
||||
lilv_node_free(atom_AtomPort);
|
||||
lilv_world_free(world);
|
||||
world = NULL;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue