diff options
author | David Robillard <d@drobilla.net> | 2011-04-28 00:56:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-28 00:56:08 +0000 |
commit | 32c2e8e07943c52fe2489f31ac66c7026fdcc78d (patch) | |
tree | 72830b2e4dffc3284cf37277bbde50b765ea876c | |
parent | 6259cdfd5365898a3be6e2967714e610b93acee2 (diff) | |
download | lilv-32c2e8e07943c52fe2489f31ac66c7026fdcc78d.tar.gz lilv-32c2e8e07943c52fe2489f31ac66c7026fdcc78d.tar.bz2 lilv-32c2e8e07943c52fe2489f31ac66c7026fdcc78d.zip |
Compile with older versions of glib.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3205 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/world.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/world.c b/src/world.c index 7503b0f..e722024 100644 --- a/src/world.c +++ b/src/world.c @@ -152,9 +152,9 @@ slv2_world_free(SLV2World world) slv2_node_free(world, spec->spec); slv2_node_free(world, spec->bundle); slv2_values_free(spec->data_uris); - //free(spec); + free(spec); } - g_slist_free_full(world->specs, free); + g_slist_free(world->specs); world->specs = NULL; SLV2_FOREACH(i, world->plugins) { |