From e7b2f7ee286350bc3bb56b44ed98e4d8bf49af82 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 13 Dec 2016 20:53:58 -0500 Subject: Fix real-time issues with buffer allocation --- src/server/ControlBindings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server/ControlBindings.cpp') 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 + Copyright 2007-2016 David Robillard 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; + uint16_t value = 0; + Bindings* bindings = _bindings.get(); _feedback->clear(); Ingen::World* world = context.engine().world(); -- cgit v1.2.1