From a0037ee2d8a1a100e1528bcc4fb78fab048957fc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 26 May 2014 07:00:00 +0200 Subject: [PATCH] fixup freeze operation. since rev. 1e3a955, Session::write_one_track() gets and drops thread buffers. --- gtk2_ardour/editor_ops.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 08d6297faa..8719a33453 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -3575,10 +3575,8 @@ Editor::freeze_thread () /* create event pool because we may need to talk to the session */ SessionEvent::create_per_thread_pool ("freeze events", 64); /* create per-thread buffers for process() tree to use */ - current_interthread_info->process_thread.get_buffers (); clicked_routeview->audio_track()->freeze_me (*current_interthread_info); current_interthread_info->done = true; - current_interthread_info->process_thread.drop_buffers(); return 0; }