From 02b98290c5aa9a0c304dbdb613348932e8d52ee1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 29 Nov 2020 12:47:52 -0700 Subject: [PATCH] set uninitialized _time_domain member of TempoMap in constructor --- libs/temporal/tempo.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index ec065d46cc..c60072b7a6 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -567,6 +567,7 @@ TempoMapPoint::end_float () /* TEMPOMAP */ TempoMap::TempoMap (Tempo const & initial_tempo, Meter const & initial_meter) + : _time_domain (AudioTime) { TempoPoint* tp = new TempoPoint (*this, initial_tempo, 0, Beats(), BBT_Time()); MeterPoint* mp = new MeterPoint (*this, initial_meter, 0, Beats(), BBT_Time());