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
This commit is contained in:
Paul Davis 2008-07-08 12:50:45 +00:00
parent 38558fe9d1
commit d0062541da

View file

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