summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-07 18:02:38 +0000
committerDavid Robillard <d@drobilla.net>2011-03-07 18:02:38 +0000
commitf629192b08e0e31a666c433bde66aa0683e41c4e (patch)
tree5c040451e0a177fa8efefa59bcabcb4b068e02be /src
parentac6ebc5a2e31ab28888406ec2c47b4a5ca390114 (diff)
downloadlilv-f629192b08e0e31a666c433bde66aa0683e41c4e.tar.gz
lilv-f629192b08e0e31a666c433bde66aa0683e41c4e.tar.bz2
lilv-f629192b08e0e31a666c433bde66aa0683e41c4e.zip
Fix memory leak.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3050 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/world.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c
index bc81319..8b5d1cf 100644
--- a/src/world.c
+++ b/src/world.c
@@ -313,6 +313,7 @@ slv2_world_add_plugin(SLV2World world,
slv2_array_append(plugin->data_uris,
slv2_value_new_from_node(world, file_node));
}
+ slv2_match_end(files);
// Add plugin to world plugin sequence
slv2_sequence_insert(world->plugins, plugin);