summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-04 00:20:19 +0000
committerDavid Robillard <d@drobilla.net>2009-06-04 00:20:19 +0000
commit78ee0c8a610187b149191e175013481a268dec6a (patch)
tree88d996220350c9dfc5c5153a115cafb00efb3857 /utils
parent27751d02ec3acf33169e2f670c39edc95f02cd8d (diff)
downloadlilv-78ee0c8a610187b149191e175013481a268dec6a.tar.gz
lilv-78ee0c8a610187b149191e175013481a268dec6a.tar.bz2
lilv-78ee0c8a610187b149191e175013481a268dec6a.zip
Centralize storage creation and only create SPO and OPS indices (TODO: Add API for user to select, predicate-variable queries will be slow this way).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2090 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r--utils/lv2_inspect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c
index 7b3d594..716d9a2 100644
--- a/utils/lv2_inspect.c
+++ b/utils/lv2_inspect.c
@@ -226,6 +226,7 @@ SELECT ?name WHERE { <> lv2p:hasPreset ?preset . ?preset dc:title ?name }");
for (; !slv2_results_finished(presets); slv2_results_next(presets)) {
SLV2Value name = slv2_results_get_binding_value(presets, 0);
printf("\t %s\n", slv2_value_as_string(name));
+ slv2_value_free(name);
}
slv2_results_free(presets);