summaryrefslogtreecommitdiffstats
path: root/src/engine/events/DestroyEvent.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-12-20 19:00:33 +0000
committerDavid Robillard <d@drobilla.net>2008-12-20 19:00:33 +0000
commit72c6d069df26396436c653532702a4f96f901fba (patch)
tree2a766dae4b1fc88bd29eaaa5c854ceae71469adf /src/engine/events/DestroyEvent.cpp
parentbdc0651e0b5407d88f821329c9275625956f96d2 (diff)
downloadingen-72c6d069df26396436c653532702a4f96f901fba.tar.gz
ingen-72c6d069df26396436c653532702a4f96f901fba.tar.bz2
ingen-72c6d069df26396436c653532702a4f96f901fba.zip
Fix race condition on clear patch.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1876 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/DestroyEvent.cpp')
-rw-r--r--src/engine/events/DestroyEvent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/events/DestroyEvent.cpp b/src/engine/events/DestroyEvent.cpp
index 17552938..c1ee15e7 100644
--- a/src/engine/events/DestroyEvent.cpp
+++ b/src/engine/events/DestroyEvent.cpp
@@ -34,8 +34,8 @@
namespace Ingen {
-DestroyEvent::DestroyEvent(Engine& engine, SharedPtr<Responder> responder, FrameTime time, QueuedEventSource* source, const string& path, bool block)
- : QueuedEvent(engine, responder, time, source, source)
+DestroyEvent::DestroyEvent(Engine& engine, SharedPtr<Responder> responder, FrameTime time, QueuedEventSource* source, const string& path)
+ : QueuedEvent(engine, responder, time, true, source)
, _path(path)
, _store_iterator(engine.engine_store()->end())
, _driver_port(NULL)