diff options
author | David Robillard <d@drobilla.net> | 2012-04-11 03:04:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-11 03:04:28 +0000 |
commit | 454f7c8b0ac63c1291fba5445d870773d0c980d3 (patch) | |
tree | a34f6e16afb20aa92e00a34cabeca9dfb1111b78 /src/jalv.c | |
parent | 6e771526106e8e1635b462064ad375ecda0b177a (diff) | |
download | jalv-454f7c8b0ac63c1291fba5445d870773d0c980d3.tar.gz jalv-454f7c8b0ac63c1291fba5445d870773d0c980d3.tar.bz2 jalv-454f7c8b0ac63c1291fba5445d870773d0c980d3.zip |
Fix memory leak.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4159 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/jalv.c')
-rw-r--r-- | src/jalv.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -770,9 +770,9 @@ main(int argc, char** argv) const LilvNode* ui_type = NULL; host.ui = NULL; if (native_ui_type) { - LilvUIs* uis = lilv_plugin_get_uis(host.plugin); // FIXME: leak - LILV_FOREACH(uis, u, uis) { - const LilvUI* this_ui = lilv_uis_get(uis, u); + host.uis = lilv_plugin_get_uis(host.plugin); + LILV_FOREACH(uis, u, host.uis) { + const LilvUI* this_ui = lilv_uis_get(host.uis, u); if (lilv_ui_is_supported( this_ui, suil_ui_supported, native_ui_type, &ui_type)) { // TODO: Multiple UI support @@ -959,6 +959,7 @@ main(int argc, char** argv) symap_free(host.symap); suil_host_free(ui_host); sratom_free(host.sratom); + lilv_uis_free(host.uis); lilv_world_free(world); zix_sem_destroy(&exit_sem); |