diff options
author | David Robillard <d@drobilla.net> | 2008-02-23 19:51:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-02-23 19:51:43 +0000 |
commit | bd34ee943e1041cfff7d4bd896bb4bb2c09a546a (patch) | |
tree | 8060a4f04a13cc493be76730df6abaf007a4b04b /src/Patchage.cpp | |
parent | 2fd851eed1fedb7e27ac9134c4b9e7d9e2206d11 (diff) | |
download | patchage-bd34ee943e1041cfff7d4bd896bb4bb2c09a546a.tar.gz patchage-bd34ee943e1041cfff7d4bd896bb4bb2c09a546a.tar.bz2 patchage-bd34ee943e1041cfff7d4bd896bb4bb2c09a546a.zip |
Plug several memory leaks.
Reduce Patchage memory consumption (shrink (stupid) alsa thread stack size).
git-svn-id: http://svn.drobilla.net/lad/patchage@1161 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r-- | src/Patchage.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp index 3d124a2..4519ede 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -262,6 +262,10 @@ Patchage::~Patchage() delete _lash_driver; #endif delete _state_manager; + + _about_win.destroy(); + _messages_win.destroy(); + _main_win.destroy(); } |