summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-07-29 19:02:02 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-07-29 19:02:02 +0000
commitd775781c2f9453d670612d96640240945b2b6881 (patch)
tree07a6d313c4f4b9ce57ab27754a3fe122ea66d721 /libs/ardour/route.cc
parent3ae28868ff02abf44102fff9954e7e8d6359867f (diff)
avoid crashes caused by the process buffer set being larger than expected when passed into Route::process_output_buffers()
git-svn-id: svn://localhost/ardour2/branches/3.0@5437 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index e9c09e33bb..e1c85bf968 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -1341,7 +1341,6 @@ Route::configure_processors_unlocked (ProcessorStreams* err)
// Ensure route outputs match last processor's outputs
if (out != _output->n_ports ()) {
- cerr << "For " << _name << " out/last mismatch - out = " << out << " vs. " << _output->n_ports() << endl;
_output->ensure_io (out, false, this);
}