summaryrefslogtreecommitdiffstats
path: root/src/World.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-12-31 22:03:14 +0000
committerDavid Robillard <d@drobilla.net>2013-12-31 22:03:14 +0000
commit250974e44a9cfb3cd33b2d902bc0daaaff1d6a14 (patch)
tree5d73343f01647ea86f3ef6381814a2dccecbd22f /src/World.cpp
parent5b282781b24ca58b65c72e3c6be1313d7974c6ed (diff)
downloadingen-250974e44a9cfb3cd33b2d902bc0daaaff1d6a14.tar.gz
ingen-250974e44a9cfb3cd33b2d902bc0daaaff1d6a14.tar.bz2
ingen-250974e44a9cfb3cd33b2d902bc0daaaff1d6a14.zip
Hopefully fix deadlock on exit for real this time.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5244 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/World.cpp')
-rw-r--r--src/World.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/World.cpp b/src/World.cpp
index c91724a6..43388c9c 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -22,6 +22,7 @@
#include <glibmm/module.h>
#include "ingen/Configuration.hpp"
+#include "ingen/EngineBase.hpp"
#include "ingen/LV2Features.hpp"
#include "ingen/Log.hpp"
#include "ingen/Module.hpp"
@@ -154,6 +155,8 @@ public:
~Impl()
{
+ engine->quit();
+
// Delete module objects but save pointers to libraries
typedef std::list<Glib::Module*> Libs;
Libs libs;