summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index c6e6c21360..19b6f30367 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -72,6 +72,7 @@ Processor::Processor(Session& session, const string& name)
, _output_latency (0)
, _capture_offset (0)
, _playback_offset (0)
+ , _loop_location (0)
{
}
@@ -91,6 +92,10 @@ Processor::Processor (const Processor& other)
, _pinmgr_proxy (0)
, _owner (0)
, _input_latency (0)
+ , _output_latency (0)
+ , _capture_offset (0)
+ , _playback_offset (0)
+ , _loop_location (other._loop_location)
{
}