diff options
author | David Robillard <d@drobilla.net> | 2016-12-13 20:53:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-12-14 14:47:13 -0500 |
commit | e7b2f7ee286350bc3bb56b44ed98e4d8bf49af82 (patch) | |
tree | 8e5a4e42b36bb5c321f24cdd492cd3dc0a941222 /src/server/ControlBindings.cpp | |
parent | 05c55a5be68318d2b7ca861a3012bf4893bcb82d (diff) | |
download | ingen-e7b2f7ee286350bc3bb56b44ed98e4d8bf49af82.tar.gz ingen-e7b2f7ee286350bc3bb56b44ed98e4d8bf49af82.tar.bz2 ingen-e7b2f7ee286350bc3bb56b44ed98e4d8bf49af82.zip |
Fix real-time issues with buffer allocation
Diffstat (limited to 'src/server/ControlBindings.cpp')
-rw-r--r-- | src/server/ControlBindings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/ControlBindings.cpp b/src/server/ControlBindings.cpp index 0063c682..fc3ac7de 100644 --- a/src/server/ControlBindings.cpp +++ b/src/server/ControlBindings.cpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2015 David Robillard <http://drobilla.net/> + Copyright 2007-2016 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -399,8 +399,8 @@ ControlBindings::remove(PortImpl* port) void ControlBindings::pre_process(RunContext& context, Buffer* buffer) { - uint16_t value = 0; - SPtr<Bindings> bindings = _bindings; + uint16_t value = 0; + Bindings* bindings = _bindings.get(); _feedback->clear(); Ingen::World* world = context.engine().world(); |