From 944dae2a417763d6f192dfdf81c7f2cd4c28e8b6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 19 Jun 2012 15:51:56 +0000 Subject: [PATCH] Write the topologically sorted route list back to the session's list so that the 1-processor process code sees it. Should fix #4937. git-svn-id: svn://localhost/ardour2/branches/3.0@12784 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index b95b8d304e..72c2a8654f 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -1485,7 +1485,7 @@ Session::resort_routes_using (boost::shared_ptr r) trace_terminal (*i, *i); } - r = sorted_routes; + *r = *sorted_routes; #ifndef NDEBUG DEBUG_TRACE (DEBUG::Graph, "Routes resorted, order follows:\n");