summaryrefslogtreecommitdiff
path: root/libs/ardour/linux_vst_support.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-06-06 02:24:49 +0200
committerRobin Gareus <robin@gareus.org>2013-06-06 02:24:49 +0200
commite9341a7de38a7edd7c70aedd17a53e8d91b293a1 (patch)
tree9b7294af701403f73932d111d7bf793ccce03353 /libs/ardour/linux_vst_support.cc
parentcd8180c864f5d02d7ce0515ed9f5b2ff4f6e1901 (diff)
fix memory leaks and compiler warnings in LXVST code
Diffstat (limited to 'libs/ardour/linux_vst_support.cc')
-rw-r--r--libs/ardour/linux_vst_support.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/linux_vst_support.cc b/libs/ardour/linux_vst_support.cc
index 99251f08e4..1fccf79968 100644
--- a/libs/ardour/linux_vst_support.cc
+++ b/libs/ardour/linux_vst_support.cc
@@ -379,6 +379,7 @@ void vstfx_close (VSTState* vstfx)
dlclose(vstfx->handle->dll); //dlclose keeps its own reference count
vstfx->handle->dll = 0;
}
+ free(vstfx);
}