summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-10 01:27:27 +0000
committerDavid Robillard <d@drobilla.net>2014-08-10 01:27:27 +0000
commit5e098da2c2b1ef6636af7943a7788f2b47f0ad6c (patch)
tree84acfeeea09f4d76ebd30216526a038cbc9816da /src/World.cpp
parent6d4c83789dd90792e96e9e4271a5aad4fdc76e3e (diff)
downloadingen-5e098da2c2b1ef6636af7943a7788f2b47f0ad6c.tar.gz
ingen-5e098da2c2b1ef6636af7943a7788f2b47f0ad6c.tar.bz2
ingen-5e098da2c2b1ef6636af7943a7788f2b47f0ad6c.zip
Fix some memory leaks.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5451 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/World.cpp b/src/World.cpp
index 38f9c4cc..5b7214a4 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -150,6 +150,7 @@ public:
const LilvNode* internal = lilv_nodes_get(internals, i);
lilv_world_load_resource(lilv_world, internal);
}
+ lilv_nodes_free(internals);
lilv_node_free(rdf_type);
lilv_node_free(ingen_Plugin);
}