diff options
author | David Robillard <d@drobilla.net> | 2008-08-14 04:03:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-14 04:03:14 +0000 |
commit | 58e8d1cddd520ae0ddf39f16210f1500868a2b2e (patch) | |
tree | 3da3105ec9c526f36352295b6d75c390e05c26b5 /src/libs/engine/LV2Node.cpp | |
parent | 2ad7b1dab1cbbc9a35fe84ce784179d78fba3a29 (diff) | |
download | ingen-58e8d1cddd520ae0ddf39f16210f1500868a2b2e.tar.gz ingen-58e8d1cddd520ae0ddf39f16210f1500868a2b2e.tar.bz2 ingen-58e8d1cddd520ae0ddf39f16210f1500868a2b2e.zip |
Lock RDF world mutex in all places slv2 or redland is accessed (fix random segfaults usually on patch loading).
git-svn-id: http://svn.drobilla.net/lad/ingen@1367 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/LV2Node.cpp')
-rw-r--r-- | src/libs/engine/LV2Node.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libs/engine/LV2Node.cpp b/src/libs/engine/LV2Node.cpp index 59d30c7e..974c5858 100644 --- a/src/libs/engine/LV2Node.cpp +++ b/src/libs/engine/LV2Node.cpp @@ -108,9 +108,7 @@ LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly) assert(poly <= _instances->size()); _polyphony = poly; - NodeBase::apply_poly(maid, poly); - - return true; + return NodeBase::apply_poly(maid, poly); } |