summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-04-12 17:37:26 +0200
committerRobin Gareus <robin@gareus.org>2017-04-12 17:37:26 +0200
commit64f40c09fab28c91892058845c004d12c84636fe (patch)
treec63d9d3c9047782a9cd69601a4f3dc5576927306 /libs/ardour/plugin.cc
parent85c587d7025edbd33ae6e8bbcf06b6e5a2c66bdd (diff)
Fix setting Plugin-Owner (route) for analysis plugins
Diffstat (limited to 'libs/ardour/plugin.cc')
-rw-r--r--libs/ardour/plugin.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc
index 8051e95804..7c96922571 100644
--- a/libs/ardour/plugin.cc
+++ b/libs/ardour/plugin.cc
@@ -97,6 +97,7 @@ Plugin::Plugin (AudioEngine& e, Session& s)
: _engine (e)
, _session (s)
, _cycles (0)
+ , _owner (0)
, _have_presets (false)
, _have_pending_stop_events (false)
, _parameter_changed_since_last_preset (false)
@@ -111,6 +112,7 @@ Plugin::Plugin (const Plugin& other)
, _session (other._session)
, _info (other._info)
, _cycles (0)
+ , _owner (other._owner)
, _have_presets (false)
, _have_pending_stop_events (false)
, _parameter_changed_since_last_preset (false)