From c48d89477707cf063a6120647685799753470b82 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 Feb 2009 03:29:23 +0000 Subject: Fix memory leaks. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1927 a436a847-0d15-0410-975c-d299462d15a1 --- hosts/lv2_jack_host.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'hosts') diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index a7138e7..ea97d5d 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -196,6 +196,8 @@ main(int argc, char** argv) for (uint32_t i=0; i < host.num_ports; ++i) create_port(&host, i, default_values[i]); + + free(default_values); /* Activate plugin and JACK */ slv2_instance_activate(host.instance); @@ -226,6 +228,7 @@ main(int argc, char** argv) slv2_instance_free(host.instance); /* Clean up */ + free(host.ports); slv2_value_free(host.input_class); slv2_value_free(host.output_class); slv2_value_free(host.control_class); -- cgit v1.2.1