summaryrefslogtreecommitdiff
path: root/libs/ardour/worker.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-01-20 11:32:55 +0100
committerRobin Gareus <robin@gareus.org>2017-01-20 11:32:55 +0100
commit02d484de8a4733907b40743557459a8cc42565b7 (patch)
treec9c0074d135f0f39bf87add3d2ed9cf31a31604e /libs/ardour/worker.cc
parent6b5dce2c66554df2243d62ca06c93b9c9eefc8fa (diff)
Plug some libardour memory leaks
Diffstat (limited to 'libs/ardour/worker.cc')
-rw-r--r--libs/ardour/worker.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/worker.cc b/libs/ardour/worker.cc
index f8a5e44aee..0a5971fa3e 100644
--- a/libs/ardour/worker.cc
+++ b/libs/ardour/worker.cc
@@ -50,6 +50,9 @@ Worker::~Worker()
if (_thread) {
_thread->join();
}
+ delete _responses;
+ delete _requests;
+ free (_response);
}
bool