Fix potentially uninitialised variable.
git-svn-id: svn://localhost/ardour2/branches/3.0@6231 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
cf6f83146a
commit
273c35e3a9
@ -48,7 +48,8 @@ InternalSend::InternalSend (Session& s, boost::shared_ptr<MuteMaster> mm, boost:
|
||||
}
|
||||
|
||||
InternalSend::InternalSend (Session& s, boost::shared_ptr<MuteMaster> mm, const XMLNode& node)
|
||||
: Send (s, mm, node, Stateful::loading_state_version, Delivery::Aux /* will be reset in set_state() */)
|
||||
: Send (s, mm, node, Stateful::loading_state_version, Delivery::Aux /* will be reset in set_state() */),
|
||||
target (0)
|
||||
{
|
||||
/* Send constructor will set its state, so here we just need to set up our own */
|
||||
set_our_state (node, Stateful::loading_state_version);
|
||||
|
Loading…
Reference in New Issue
Block a user