mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 06:35:46 +01:00
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
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue