diff options
author | David Robillard <d@drobilla.net> | 2015-10-29 04:21:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-29 04:21:25 +0000 |
commit | efc94d38733ac94c04f3c2d01d2eb058b5e3d4d5 (patch) | |
tree | e45e7481b6171ba121ceab23a8e74111cca80af9 /test/missing_port_name.lv2 | |
parent | fa730d2423662aeb4c34f7395e448e3316358823 (diff) | |
download | lilv-efc94d38733ac94c04f3c2d01d2eb058b5e3d4d5.tar.gz lilv-efc94d38733ac94c04f3c2d01d2eb058b5e3d4d5.tar.bz2 lilv-efc94d38733ac94c04f3c2d01d2eb058b5e3d4d5.zip |
Fix test suite memory leaks
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5796 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test/missing_port_name.lv2')
-rw-r--r-- | test/missing_port_name.lv2/test_missing_port_name.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/missing_port_name.lv2/test_missing_port_name.c b/test/missing_port_name.lv2/test_missing_port_name.c index 0f96918..c000247 100644 --- a/test/missing_port_name.lv2/test_missing_port_name.c +++ b/test/missing_port_name.lv2/test_missing_port_name.c @@ -28,6 +28,7 @@ main(int argc, char** argv) lilv_world_load_bundle(world, bundle_uri); free(abs_bundle); serd_node_free(&bundle); + lilv_node_free(bundle_uri); LilvNode* plugin_uri = lilv_new_uri(world, PLUGIN_URI); const LilvPlugins* plugins = lilv_world_get_all_plugins(world); @@ -38,7 +39,9 @@ main(int argc, char** argv) TEST_ASSERT(port); LilvNode* name = lilv_port_get_name(plugin, port); TEST_ASSERT(!name); + lilv_node_free(name); + lilv_node_free(plugin_uri); lilv_world_free(world); return 0; |