13
0

Fix potentially uninitialised variable.

git-svn-id: svn://localhost/ardour2/branches/3.0@6231 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-12-01 00:53:36 +00:00
parent cf6f83146a
commit 273c35e3a9

View File

@ -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);