diff options
Diffstat (limited to 'src/server/LV2Info.cpp')
-rw-r--r-- | src/server/LV2Info.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/LV2Info.cpp b/src/server/LV2Info.cpp index 744a30b2..841ee0fd 100644 --- a/src/server/LV2Info.cpp +++ b/src/server/LV2Info.cpp @@ -40,6 +40,7 @@ LV2Info::LV2Info(Ingen::World* world) , lv2_InputPort(lilv_new_uri(world->lilv_world(), LV2_CORE__InputPort)) , lv2_OutputPort(lilv_new_uri(world->lilv_world(), LV2_CORE__OutputPort)) , lv2_default(lilv_new_uri(world->lilv_world(), LV2_CORE__default)) + , lv2_designation(lilv_new_uri(world->lilv_world(), LV2_CORE__designation)) , lv2_portProperty(lilv_new_uri(world->lilv_world(), LV2_CORE__portProperty)) , lv2_sampleRate(lilv_new_uri(world->lilv_world(), LV2_CORE__sampleRate)) , morph_AutoMorphPort(lilv_new_uri(world->lilv_world(), LV2_MORPH__AutoMorphPort)) @@ -64,6 +65,7 @@ LV2Info::~LV2Info() lilv_node_free(lv2_InputPort); lilv_node_free(lv2_OutputPort); lilv_node_free(lv2_default); + lilv_node_free(lv2_designation); lilv_node_free(lv2_portProperty); lilv_node_free(lv2_sampleRate); lilv_node_free(morph_AutoMorphPort); |