From ae74d66eb79754ed2ce1416f4f57d827116af598 Mon Sep 17 00:00:00 2001 From: jdekozak Date: Tue, 14 May 2013 20:01:20 +0200 Subject: [PATCH] initialize ltc_enc_buf to 0 to fix crash in ltc_tx_cleanup at startup --- libs/ardour/session.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 6fe51961d2..914c6a9a77 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -140,6 +140,7 @@ Session::Session (AudioEngine &eng, , _butler (new Butler (*this)) , _post_transport_work (0) , _send_timecode_update (false) + , ltc_enc_buf(0) , _all_route_group (new RouteGroup (*this, "all")) , routes (new RouteList) , _total_free_4k_blocks (0)