From efc94d38733ac94c04f3c2d01d2eb058b5e3d4d5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 29 Oct 2015 04:21:25 +0000 Subject: Fix test suite memory leaks git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5796 a436a847-0d15-0410-975c-d299462d15a1 --- test/lib_descriptor.lv2/test_lib_descriptor.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/lib_descriptor.lv2') diff --git a/test/lib_descriptor.lv2/test_lib_descriptor.c b/test/lib_descriptor.lv2/test_lib_descriptor.c index 3409ef2..ff14763 100644 --- a/test/lib_descriptor.lv2/test_lib_descriptor.c +++ b/test/lib_descriptor.lv2/test_lib_descriptor.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); @@ -36,15 +37,21 @@ main(int argc, char** argv) LilvInstance* instance = lilv_plugin_instantiate(plugin, 48000.0, NULL); TEST_ASSERT(instance); + lilv_instance_free(instance); LilvNode* eg_blob = lilv_new_uri(world, "http://example.org/blob"); LilvNode* blob = lilv_world_get(world, plugin_uri, eg_blob, NULL); TEST_ASSERT(lilv_node_is_literal(blob)); + lilv_node_free(blob); + lilv_node_free(eg_blob); LilvNode* eg_junk = lilv_new_uri(world, "http://example.org/junk"); LilvNode* junk = lilv_world_get(world, plugin_uri, eg_junk, NULL); TEST_ASSERT(lilv_node_is_literal(junk)); + lilv_node_free(junk); + lilv_node_free(eg_junk); + lilv_node_free(plugin_uri); lilv_world_free(world); return 0; -- cgit v1.2.1