summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorjdekozak <jdekozak@hotmail.com>2013-05-14 20:01:20 +0200
committerjdekozak <jdekozak@hotmail.com>2013-05-17 08:03:55 +0200
commitae74d66eb79754ed2ce1416f4f57d827116af598 (patch)
treea1ee474e04a69748b8971b9ed7efc068245fad2c /libs/ardour
parent31a05b01e6a687fba438a05ad06250fc6cd2f4ab (diff)
initialize ltc_enc_buf to 0 to fix crash in ltc_tx_cleanup at startup
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/session.cc1
1 files changed, 1 insertions, 0 deletions
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)