From d0062541da23365bbf5121fc9c8a146929c14d21 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 8 Jul 2008 12:50:45 +0000 Subject: [PATCH] fix crash-inducing debug output caused by indirecting through null err_streams argument to reset_plugin_counts() git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3521 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/route.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index f055543fe5..0bc9f3fff3 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -1186,7 +1186,6 @@ Route::_reset_plugin_counts (uint32_t* err_streams) /* A: PreFader */ if (check_some_plugin_counts (insert_map[PreFader], n_inputs (), err_streams)) { - cerr << "Pre -- going to streamcount, err_streams = " << *err_streams << endl;//DEBUG goto streamcount; } @@ -1205,7 +1204,6 @@ Route::_reset_plugin_counts (uint32_t* err_streams) /* B: PostFader */ if (check_some_plugin_counts (insert_map[PostFader], initial_streams, err_streams)) { - cerr << "Post -- going to streamcount, err_streams = " << *err_streams << endl;//DEBUG goto streamcount; }